結果
| 問題 | No.1942 Leading zero |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-20 23:57:19 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 420 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 73,216 KB |
| 最終ジャッジ日時 | 2026-04-08 21:37:10 |
| 合計ジャッジ時間 | 1,057 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | WA * 1 |
ソースコード
import sys
input = sys.stdin.readline
from collections import *
for _ in range(int(input())):
S = input()[:-1]
for i in range(len(S)):
if S[i]!='0':
print(S[i:])
break