結果
| 問題 | No.3533 Difficult Counting Problem? |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2026-05-08 22:10:16 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 41 ms / 2,000 ms |
| コード長 | 154 bytes |
| 記録 | |
| コンパイル時間 | 323 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 64,768 KB |
| 最終ジャッジ日時 | 2026-05-08 22:10:19 |
| 合計ジャッジ時間 | 1,574 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 17 |
ソースコード
def solve():
N = int(input())
print(1 if N == 1 else 0)
if __name__ == "__main__":
T = int(input())
for _ in range(T):
solve()