結果
問題 | No.1830 Balanced Majority |
ユーザー | kakel-san |
提出日時 | 2023-12-11 21:53:11 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,273 bytes |
コンパイル時間 | 7,438 ms |
コンパイル使用メモリ | 169,068 KB |
実行使用メモリ | 45,912 KB |
平均クエリ数 | 7.27 |
最終ジャッジ日時 | 2024-09-27 04:38:16 |
合計ジャッジ時間 | 11,182 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
45,784 KB |
testcase_01 | AC | 72 ms
45,656 KB |
testcase_02 | AC | 73 ms
45,144 KB |
testcase_03 | AC | 73 ms
45,656 KB |
testcase_04 | AC | 73 ms
44,888 KB |
testcase_05 | AC | 73 ms
45,368 KB |
testcase_06 | WA | - |
testcase_07 | AC | 74 ms
45,144 KB |
testcase_08 | AC | 74 ms
45,528 KB |
testcase_09 | AC | 75 ms
45,272 KB |
testcase_10 | AC | 74 ms
45,656 KB |
testcase_11 | WA | - |
testcase_12 | AC | 74 ms
45,528 KB |
testcase_13 | AC | 74 ms
45,528 KB |
testcase_14 | AC | 75 ms
45,528 KB |
testcase_15 | AC | 74 ms
44,888 KB |
testcase_16 | AC | 73 ms
45,516 KB |
testcase_17 | AC | 72 ms
45,112 KB |
testcase_18 | AC | 71 ms
45,624 KB |
testcase_19 | AC | 72 ms
44,748 KB |
testcase_20 | WA | - |
testcase_21 | AC | 75 ms
45,656 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 74 ms
45,536 KB |
testcase_25 | AC | 73 ms
45,264 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (91 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var n = NN; var a1 = Question(1); var an = Question(n - 1); if (a1 == an) { Answer(2, n - 1); return; } var left = 1; var right = n; while (right - left > 1) { var center = (left + right) / 2; var ac = Question(center); if (ac == 0) { if (center > n / 2) Answer(1, center); else Answer(center + 1, n); return; } if ((ac > 0) && (a1 > 0)) left = center; else right = center; } } static int Question(int k) { WriteLine($"? {k}"); return NN * 2 - k; } static void Answer(int l, int r) { WriteLine($"! {l} {r}"); } }