結果

問題 No.1915 Addition
ユーザー minarucominaruco
提出日時 2022-05-05 21:49:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 54 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 87,144 KB
実行使用メモリ 71,340 KB
最終ジャッジ日時 2023-09-18 07:25:46
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,208 KB
testcase_01 AC 75 ms
71,068 KB
testcase_02 AC 79 ms
71,016 KB
testcase_03 AC 76 ms
71,200 KB
testcase_04 AC 77 ms
71,340 KB
testcase_05 AC 76 ms
70,984 KB
testcase_06 AC 77 ms
71,216 KB
testcase_07 AC 76 ms
70,832 KB
testcase_08 AC 76 ms
71,332 KB
testcase_09 AC 76 ms
71,196 KB
testcase_10 AC 76 ms
71,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for _ in range(n):print(int(input())*2)
0