結果

問題 No.3093 Please GCD
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-03-01 18:28:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 2,939 ms
コンパイル使用メモリ 243,128 KB
実行使用メモリ 25,476 KB
平均クエリ数 8099.53
最終ジャッジ日時 2024-09-29 13:15:16
合計ジャッジ時間 15,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,220 KB
testcase_01 AC 25 ms
24,964 KB
testcase_02 AC 58 ms
24,836 KB
testcase_03 AC 317 ms
24,836 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 317 ms
24,836 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 331 ms
24,580 KB
testcase_10 AC 22 ms
24,836 KB
testcase_11 AC 104 ms
25,220 KB
testcase_12 AC 283 ms
25,476 KB
testcase_13 AC 333 ms
25,476 KB
testcase_14 WA -
testcase_15 AC 55 ms
24,836 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 334 ms
24,836 KB
testcase_21 AC 326 ms
25,476 KB
testcase_22 WA -
testcase_23 AC 323 ms
25,136 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 344 ms
25,220 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace std;
typedef long long ll;

int main() {
    int n;
    cin >> n;
    int ans = 0;
    rep(i, 1, n + 1) {
        cout << "? " << i << endl;
        fflush(stdout);
        int input;
        cin >> input;
        if (input == i) ans = i;
    }
    cout << "! " << ans << endl;
}
0