結果
問題 | No.1830 Balanced Majority |
ユーザー | mannshi222jp |
提出日時 | 2022-02-04 23:30:42 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,110 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 9.77 |
最終ジャッジ日時 | 2024-06-11 12:58:00 |
合計ジャッジ時間 | 2,815 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
25,064 KB |
testcase_01 | AC | 19 ms
24,556 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 18 ms
24,824 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 22 ms
25,192 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 22 ms
25,092 KB |
testcase_16 | AC | 22 ms
24,836 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 22 ms
25,220 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <stdio.h> int main() { int N; int top; int num; int sum; int prev; int tmp; scanf("%d", &N ); prev = 0; top = N/2; sum = 0; while( 1 ) { printf("? %d\n", top ); fflush( stdout ); scanf( "%d", &num ); if( num == -1 ) { return(0); } if( sum + num == N / 2 ) { if( top == N ) { printf("! %d %d\n", 2, N-1 );fflush( stdout ); return 0; } printf("! %d %d\n", 1, top );fflush( stdout ); return 0; } if( sum + num < N /2 ) { top = ( top + N ) /2 + ( top + N ) % 2; } else { tmp = top; top = ( top + prev ) / 2 + ( top + prev ) %2; prev = top; } } return 0; }