結果
| 問題 |
No.3079 Unite Japanese Prefectures
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 18:56:01 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 255 bytes |
| コンパイル時間 | 267 ms |
| コンパイル使用メモリ | 82,648 KB |
| 実行使用メモリ | 54,352 KB |
| 最終ジャッジ日時 | 2025-06-12 18:56:04 |
| 合計ジャッジ時間 | 2,544 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 27 |
ソースコード
import sys
def count_zeros(n):
return str(n).count('0')
def main():
input = sys.stdin.read().split()
T = int(input[0])
for i in range(1, T+1):
N = int(input[i])
print(count_zeros(N))
if __name__ == "__main__":
main()
gew1fw