結果

問題 No.1915 Addition
ユーザー Akijin_007Akijin_007
提出日時 2022-05-06 14:36:38
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 87,248 KB
実行使用メモリ 71,488 KB
最終ジャッジ日時 2023-09-19 03:57:51
合計ジャッジ時間 3,304 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,036 KB
testcase_01 AC 76 ms
71,148 KB
testcase_02 AC 77 ms
71,336 KB
testcase_03 AC 76 ms
71,448 KB
testcase_04 AC 76 ms
71,488 KB
testcase_05 AC 77 ms
71,336 KB
testcase_06 AC 74 ms
71,032 KB
testcase_07 AC 74 ms
71,308 KB
testcase_08 AC 76 ms
71,336 KB
testcase_09 AC 76 ms
71,036 KB
testcase_10 AC 75 ms
71,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

T = int(input())

n = [0] * T
for i in range(T):
    n[i] = int(input())

for i in range(T):
    print(n[i] * 2)
0