結果

問題 No.3093 Please GCD
ユーザー hiikunZhiikunZ
提出日時 2022-04-01 22:03:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 199,304 KB
実行使用メモリ 25,604 KB
平均クエリ数 7396.23
最終ジャッジ日時 2024-11-20 09:23:02
合計ジャッジ時間 15,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,836 KB
testcase_01 AC 25 ms
24,836 KB
testcase_02 AC 26 ms
25,220 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 35 ms
25,092 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
25,220 KB
testcase_10 AC 26 ms
24,580 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 45 ms
25,232 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long int;
int main(){
    ll N;
    cin >> N;
    for(ll i = N;i >= 1;i--){
        cout << "? " << i << endl;
        ll a;
        cin >> a;
        if(a == i){
            cout << "! " << a << endl;
            return 0;
        }
    }
}
0