結果
| 問題 | No.3533 Difficult Counting Problem? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-08 22:44:09 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 2,000 ms |
| コード長 | 160 bytes |
| 記録 | |
| コンパイル時間 | 272 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 59,520 KB |
| 最終ジャッジ日時 | 2026-05-08 22:44:16 |
| 合計ジャッジ時間 | 5,719 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 17 |
ソースコード
import sys
input = sys.stdin.readline
T = int(input())
N = [int(input()) for _ in range(T)]
for n in N:
if n==1:
print(1)
else:
print(0)