結果

問題 No.1942 Leading zero
ユーザー nouka28
提出日時 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
権限があれば一括ダウンロードができます

ソースコード

diff #

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))
0