結果

問題 No.934 Explosive energy drink
ユーザー yuly3yuly3
提出日時 2020-01-07 13:52:31
言語 Nim
(2.0.2)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 5,524 ms
コンパイル使用メモリ 65,536 KB
実行使用メモリ 25,604 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 19:13:19
合計ジャッジ時間 9,788 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,196 KB
testcase_01 AC 324 ms
25,220 KB
testcase_02 AC 28 ms
25,604 KB
testcase_03 AC 166 ms
25,476 KB
testcase_04 AC 326 ms
25,220 KB
testcase_05 AC 25 ms
24,952 KB
testcase_06 AC 24 ms
25,220 KB
testcase_07 AC 25 ms
25,220 KB
testcase_08 AC 24 ms
25,092 KB
testcase_09 AC 25 ms
24,964 KB
testcase_10 AC 25 ms
25,220 KB
testcase_11 AC 25 ms
24,836 KB
testcase_12 AC 27 ms
24,964 KB
testcase_13 AC 30 ms
25,220 KB
testcase_14 AC 35 ms
25,208 KB
testcase_15 AC 105 ms
24,580 KB
testcase_16 AC 45 ms
24,580 KB
testcase_17 AC 65 ms
24,964 KB
testcase_18 AC 69 ms
25,220 KB
testcase_19 AC 129 ms
25,220 KB
testcase_20 AC 208 ms
25,208 KB
testcase_21 AC 227 ms
24,824 KB
testcase_22 AC 322 ms
24,580 KB
testcase_23 AC 326 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils

proc solve() =
    var N = stdin.readLine.parseInt()
    var M = N - 1

    var b: seq[int]
    for i in 1..N:
        var question = toSeq(1..N).filterIt(it != i)
        echo "? ", M
        echo join(question, " ")

        var ans = stdin.readLine.parseInt()
        if ans == 0:
            b.add(i)
    echo "! ", b.len
    echo join(b, " ")

solve()
0