結果
問題 | No.305 鍵(2) |
ユーザー | te-sh |
提出日時 | 2017-06-15 17:52:24 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 544 bytes |
コンパイル時間 | 890 ms |
コンパイル使用メモリ | 99,460 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 94.00 |
最終ジャッジ日時 | 2024-06-12 20:09:57 |
合計ジャッジ時間 | 2,438 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,824 KB |
testcase_01 | AC | 27 ms
25,192 KB |
testcase_02 | AC | 27 ms
25,220 KB |
testcase_03 | AC | 26 ms
24,580 KB |
testcase_04 | AC | 26 ms
25,220 KB |
testcase_05 | AC | 27 ms
24,580 KB |
testcase_06 | AC | 23 ms
24,836 KB |
testcase_07 | AC | 27 ms
24,836 KB |
testcase_08 | AC | 27 ms
25,220 KB |
testcase_09 | AC | 27 ms
25,220 KB |
testcase_10 | AC | 27 ms
24,836 KB |
testcase_11 | AC | 27 ms
24,836 KB |
testcase_12 | AC | 27 ms
24,836 KB |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto r = new int[](10); r[] = -1; foreach (i; 0..10) { auto a = new int[](10); a[] = i; auto x = ask(a); if (x == 10) return; foreach (j; 0..10) { auto b = a.dup; b[j] = (b[j] + 1) % 10; auto y = ask(b); if (y == 10) return; if (y < x) r[j] = i; } } r.each!write; writeln; stdout.flush(); } auto ask(int[] a) { a.each!write; writeln; stdout.flush(); auto rd = readln.split; return rd[0].to!int; }