結果

問題 No.1942 Leading zero
ユーザー titan23titan23
提出日時 2022-06-24 12:07:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-11-08 05:25:45
合計ジャッジ時間 1,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,376 KB
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
from collections import deque

#  -----------------------  #

n = int(input())
for _ in range(n):
  q = deque(list(input()))
  while q and q[0] == '0':
    q.popleft()
  print(''.join(q))
0