結果
| 問題 |
No.1942 Leading zero
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-20 21:41:27 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 171 bytes |
| コンパイル時間 | 217 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 77,184 KB |
| 最終ジャッジ日時 | 2024-09-20 07:38:38 |
| 合計ジャッジ時間 | 784 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 1 |
| other | RE * 1 |
ソースコード
N=int(input())
for i in range(N):
T=list(input())
i=-1
while True:
i+=1
if T[i]!="0":
break
temp=T[i:]
print("".join(temp))