結果
| 問題 | No.3533 Difficult Counting Problem? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-08 21:31:15 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 123 bytes |
| 記録 | |
| コンパイル時間 | 790 ms |
| コンパイル使用メモリ | 84,480 KB |
| 実行使用メモリ | 63,744 KB |
| 最終ジャッジ日時 | 2026-05-08 21:31:24 |
| 合計ジャッジ時間 | 3,537 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 17 |
ソースコード
T = int(input())
for _ in range(T):
N = int(input())
if N == 1:
print(1)
else:
print(0)