結果

問題 No.1942 Leading zero
ユーザー deepjugglingdeepjuggling
提出日時 2023-02-05 06:59:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 1,170 ms
コンパイル使用メモリ 86,468 KB
実行使用メモリ 77,336 KB
最終ジャッジ日時 2023-09-17 01:16:46
合計ジャッジ時間 1,613 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,472 KB
testcase_01 AC 68 ms
71,140 KB
testcase_02 AC 118 ms
77,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(n):
    s = input()
    s = int(s)
    print(s)
0