結果
問題 |
No.1942 Leading zero
|
ユーザー |
|
提出日時 | 2023-04-21 14:54:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 204 bytes |
コンパイル時間 | 340 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-11-06 09:59:09 |
合計ジャッジ時間 | 860 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | WA * 1 |
ソースコード
num_count = int(input()) nums = [] for i in range(num_count): nums.append(input()) for num in nums: for j in range(len(num)): if num[0] == "0": num = num[1:] print(num)