結果
| 問題 | No.1942 Leading zero |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-04-21 14:54:21 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 204 bytes |
| 記録 | |
| コンパイル時間 | 670 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-05-06 13:32:51 |
| 合計ジャッジ時間 | 1,751 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)