結果
問題 | No.282 おもりと天秤(2) |
ユーザー | yuki2006 |
提出日時 | 2015-09-06 23:20:35 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 567 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 25,856 KB |
平均クエリ数 | 395.75 |
最終ジャッジ日時 | 2024-07-16 05:46:10 |
合計ジャッジ時間 | 22,744 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
25,232 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | TLE | - |
testcase_14 | RE | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import sys N = int(raw_input()) W = [i + 1 for i in xrange(N)] Dummy = [0] * N turn = 0 while turn < N * N: start = 0 if N % 2 == 1: start = turn % 2 ask = " ".join(map(str, W[start:start + N])) ask += " " ask += " ".join(map(str, Dummy)) if start == 1: ask += " 0" print "?", ask sys.stdout.flush() results = raw_input().split() for i, res in enumerate(results): j = 2 * i + start if res == ">": W[j], W[j + 1] = W[j + 1], W[j] turn += 1 print "!", " ".join(map(str, W))