結果

問題 No.2502 Optimization in the Dark
ユーザー ニックネームニックネーム
提出日時 2023-10-13 22:45:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,464 KB
平均クエリ数 4.00
最終ジャッジ日時 2024-09-15 18:31:07
合計ジャッジ時間 5,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
27,208 KB
testcase_01 AC 52 ms
26,824 KB
testcase_02 AC 51 ms
27,336 KB
testcase_03 AC 52 ms
26,952 KB
testcase_04 AC 52 ms
27,080 KB
testcase_05 AC 52 ms
26,944 KB
testcase_06 AC 52 ms
27,080 KB
testcase_07 AC 51 ms
27,208 KB
testcase_08 AC 51 ms
26,568 KB
testcase_09 AC 51 ms
26,824 KB
testcase_10 AC 53 ms
27,208 KB
testcase_11 AC 52 ms
26,952 KB
testcase_12 AC 52 ms
27,208 KB
testcase_13 AC 52 ms
27,208 KB
testcase_14 AC 52 ms
26,952 KB
testcase_15 AC 52 ms
27,208 KB
testcase_16 AC 52 ms
27,072 KB
testcase_17 AC 52 ms
26,696 KB
testcase_18 AC 53 ms
27,208 KB
testcase_19 AC 52 ms
26,952 KB
testcase_20 AC 52 ms
26,952 KB
testcase_21 AC 51 ms
27,336 KB
testcase_22 AC 51 ms
26,824 KB
testcase_23 AC 52 ms
27,200 KB
testcase_24 AC 51 ms
27,080 KB
testcase_25 AC 52 ms
26,824 KB
testcase_26 AC 51 ms
27,336 KB
testcase_27 AC 51 ms
27,336 KB
testcase_28 AC 52 ms
26,952 KB
testcase_29 AC 51 ms
27,464 KB
testcase_30 AC 51 ms
27,080 KB
testcase_31 AC 53 ms
27,208 KB
testcase_32 AC 52 ms
26,696 KB
testcase_33 AC 51 ms
27,208 KB
testcase_34 AC 52 ms
26,952 KB
testcase_35 AC 51 ms
27,080 KB
testcase_36 AC 52 ms
27,464 KB
testcase_37 AC 51 ms
26,824 KB
testcase_38 AC 51 ms
27,464 KB
testcase_39 AC 51 ms
27,080 KB
testcase_40 AC 51 ms
27,208 KB
testcase_41 AC 51 ms
27,080 KB
testcase_42 AC 51 ms
27,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print("?",1,2*n,2,2*n)
z = 1 if input()=="No" else 2
print("?",z,2*n,3,2*n)
z = z if input()=="No" else 3
x = 1 if z!=1 else 2
y = 3 if z!=3 else 2
print("?",x,n,y,n)
if input()=="No": x,y = y,x
print("!",*[y,z]*n+[x,z]*n+[x,y]*n)
0