結果
| 問題 | No.3533 Difficult Counting Problem? |
| コンテスト | |
| ユーザー |
timi
|
| 提出日時 | 2026-05-08 21:27:04 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 37 ms / 2,000 ms |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 344 ms |
| コンパイル使用メモリ | 85,040 KB |
| 実行使用メモリ | 59,392 KB |
| 最終ジャッジ日時 | 2026-05-08 21:27:08 |
| 合計ジャッジ時間 | 3,156 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 17 |
ソースコード
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline
T=int(input())
for i in range(T):
s=int(input())
if s==1:
print(1)
else:
print(0)
timi