結果
| 問題 | No.3533 Difficult Counting Problem? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-23 03:32:37 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 2 ms / 2,000 ms |
| + 299µs | |
| コード長 | 216 bytes |
| 記録 | |
| コンパイル時間 | 2,570 ms |
| コンパイル使用メモリ | 171,504 KB |
| 実行使用メモリ | 9,868 KB |
| 最終ジャッジ日時 | 2026-09-23 03:32:57 |
| 合計ジャッジ時間 | 4,151 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 17 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
using ll = long long;
int main(void){
int t; cin >> t;
while(t--){
int n; cin >> n;
cout << (n==1) << '\n';
}
return 0;
}