結果
| 問題 | No.1942 Leading zero |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2022-05-20 21:37:01 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 349 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-04-08 19:16:37 |
| 合計ジャッジ時間 | 1,386 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 1 |
ソースコード
N = int(input())
for _ in range(N):
S = input().lstrip()
if len(S) == 0:
S = '0'
print(S)
norioc