結果

問題 No.2577 Simple Permutation Guess
ユーザー hiro1729hiro1729
提出日時 2023-12-06 19:01:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,432 KB
平均クエリ数 248.86
最終ジャッジ日時 2024-09-27 01:39:29
合計ジャッジ時間 30,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 144 ms
93,536 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 211 ms
93,024 KB
testcase_06 AC 527 ms
93,152 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 555 ms
93,664 KB
testcase_11 AC 64 ms
69,216 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 60 ms
67,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 61 ms
69,208 KB
testcase_24 WA -
testcase_25 AC 61 ms
68,440 KB
testcase_26 WA -
testcase_27 AC 62 ms
68,696 KB
testcase_28 AC 60 ms
68,952 KB
testcase_29 AC 59 ms
68,824 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 58 ms
68,832 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 60 ms
69,248 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 58 ms
68,192 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 58 ms
69,088 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 60 ms
68,696 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 57 ms
68,568 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 60 ms
68,056 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 58 ms
67,928 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 61 ms
68,696 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 59 ms
68,952 KB
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 AC 76 ms
79,200 KB
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
testcase_87 WA -
testcase_88 WA -
testcase_89 WA -
testcase_90 AC 77 ms
79,304 KB
testcase_91 AC 80 ms
79,048 KB
testcase_92 WA -
testcase_93 WA -
testcase_94 AC 351 ms
93,512 KB
testcase_95 WA -
testcase_96 WA -
testcase_97 WA -
testcase_98 WA -
testcase_99 WA -
testcase_100 AC 367 ms
93,256 KB
testcase_101 WA -
evil_1_rnd_1.txt AC 1,148 ms
93,896 KB
evil_1_rnd_2.txt WA -
evil_2_big_1.txt AC 1,536 ms
93,640 KB
evil_2_big_2.txt WA -
evil_2_big_3.txt AC 1,531 ms
94,024 KB
evil_3_sorted_1.txt WA -
evil_4_sorted_rev_1.txt WA -
evil_4_sorted_rev_2.txt WA -
evil_400_sorted.txt WA -
evil_400_sorted_rev.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *
n = int(input())
f = [1]
for i in range(n):
	f.append(f[-1] * (i + 1))
l, r = 0, f[n] - 1
q = [0] * n
while l + 1 < r:
	m = (l + r) // 2
	t = m
	s = list(range(1, n + 1))
	for i in range(n):
		q[i], t = s.pop(t // f[n - i - 1]), t % f[n - i - 1]
	print("?", *q)
	if input() > '0':
		l = m
	else:
		r = m
print('!', *q)
0