[구현/수학] 15372 A Simple Problem. - 파이썬(Python)


[구현/수학] 15372 A Simple Problem. - 파이썬(Python)

[ Contents ] 1. 문제 (링크 참조) 15372번: A Simple Problem. For each test case, output a single line containing the integer K, the answer for that test case. www.acmicpc.net 2. 문제 풀이 제곱 구하는 문제입니다. 3. 코드 import sys input = sys.stdin.readline t = int(input()) for _ in range(t): n = int(input()) print(n**2)

[구현/수학] 15372 A Simple Problem. - 파이썬(Python)에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


원문링크 : [구현/수학] 15372 A Simple Problem. - 파이썬(Python)