結果
問題 | No.1942 Leading zero |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2022-05-20 22:17:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 169 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 81,928 KB |
実行使用メモリ | 76,776 KB |
最終ジャッジ日時 | 2024-09-20 08:29:33 |
合計ジャッジ時間 | 702 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,712 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
N = int(input()) ANS = [] for i in range(N): S = list(input()) while S and S[0] == "0": del S[0] ANS.append("".join(S)) print ("\n".join(ANS))