結果

問題 No.1915 Addition
ユーザー ytftytft
提出日時 2022-04-30 13:14:02
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 71,524 KB
最終ジャッジ日時 2023-09-12 05:57:13
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,420 KB
testcase_01 AC 75 ms
71,424 KB
testcase_02 AC 76 ms
71,280 KB
testcase_03 AC 77 ms
71,524 KB
testcase_04 AC 76 ms
71,352 KB
testcase_05 AC 77 ms
71,280 KB
testcase_06 AC 77 ms
71,312 KB
testcase_07 AC 77 ms
71,340 KB
testcase_08 AC 77 ms
71,072 KB
testcase_09 AC 76 ms
71,452 KB
testcase_10 AC 76 ms
71,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
	N=int(input())
	print(N*2)
0