結果
| 問題 |
No.1942 Leading zero
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-20 21:24:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 103 ms / 2,000 ms |
| コード長 | 127 bytes |
| コンパイル時間 | 153 ms |
| コンパイル使用メモリ | 81,996 KB |
| 実行使用メモリ | 76,644 KB |
| 最終ジャッジ日時 | 2024-09-20 07:11:56 |
| 合計ジャッジ時間 | 728 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 1 |
ソースコード
N = int(input())
for _ in range(N):
S = input()
i = 0
while i < 4 and S[i] == "0":
i += 1
print(S[i:])