結果

問題 No.1830 Balanced Majority
ユーザー rianoriano
提出日時 2022-01-23 15:25:12
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 27,904 KB
実行使用メモリ 25,476 KB
平均クエリ数 21.00
最終ジャッジ日時 2024-05-07 03:22:20
合計ジャッジ時間 4,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

int main(){
    //入力
    int N;
    scanf("%d", &N);
	
    //質問
    for(int i=0;i<20;i++){
        int K = 1,S;
        printf("? %d\n", K);
        fflush(stdout);
        scanf("%d", &S);
    }
	
    //回答
    int L = 2,R = N-1;
    printf("! %d %d\n", L, R);
    fflush(stdout);
}
0