結果
| 問題 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | WA * 1 |
ソースコード
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))
SPD_9X2