結果

問題 No.3093 Please GCD
ユーザー 👑 CleyLCleyL
提出日時 2022-07-26 18:24:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 67,712 KB
実行使用メモリ 25,928 KB
平均クエリ数 8099.53
最終ジャッジ日時 2024-07-16 09:29:06
合計ジャッジ時間 13,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,220 KB
testcase_01 AC 24 ms
24,964 KB
testcase_02 AC 56 ms
24,836 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 335 ms
24,952 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 331 ms
24,580 KB
testcase_10 AC 21 ms
24,964 KB
testcase_11 AC 101 ms
25,220 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 54 ms
24,580 KB
testcase_16 AC 325 ms
24,836 KB
testcase_17 AC 309 ms
25,604 KB
testcase_18 WA -
testcase_19 AC 328 ms
24,580 KB
testcase_20 AC 321 ms
25,220 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 393 ms
25,220 KB
testcase_25 WA -
testcase_26 AC 323 ms
25,220 KB
testcase_27 AC 330 ms
24,964 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int n;cin>>n;
    int ret = 0;
    for(int i = 1; n >= i; i++){
        cout << "? " << i << endl;
        int x;cin>>x;
        ret = max(x,ret);
    }
    cout << "! " << ret << endl;
}
0