結果
問題 | No.3011 あ、俺こいつの役やりたい! |
ユーザー |
|
提出日時 | 2025-02-22 01:39:32 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 302 bytes |
コンパイル時間 | 3,680 ms |
コンパイル使用メモリ | 273,284 KB |
実行使用メモリ | 26,240 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2025-02-22 01:39:45 |
合計ジャッジ時間 | 10,727 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 WA * 41 |
ソースコード
#include<bits/stdc++.h>using namespace std;using ll = long long;#define all(a) begin(a) end(a)#define rep(i,a,b) for(ll i = a; i < (b); i++)int main(){ll n = 1;rep(i,0,30){cout << n << endl;int a;cin >> a;if(a == 1) return 0;n = n*2;}}