結果

問題 No.2965 Don't Stop the Game again
ユーザー 遭難者遭難者
提出日時 2024-10-28 23:53:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,024 ms
コード長 888 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 71,416 KB
平均クエリ数 297.84
最終ジャッジ日時 2024-10-28 23:53:12
合計ジャッジ時間 8,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
70,072 KB
testcase_01 AC 109 ms
69,804 KB
testcase_02 AC 110 ms
69,664 KB
testcase_03 AC 110 ms
70,032 KB
testcase_04 AC 114 ms
70,548 KB
testcase_05 AC 111 ms
70,404 KB
testcase_06 AC 112 ms
70,616 KB
testcase_07 AC 112 ms
70,360 KB
testcase_08 AC 113 ms
70,480 KB
testcase_09 AC 112 ms
70,448 KB
testcase_10 AC 113 ms
71,416 KB
testcase_11 AC 113 ms
71,372 KB
testcase_12 AC 113 ms
69,768 KB
testcase_13 AC 112 ms
70,296 KB
testcase_14 AC 112 ms
69,672 KB
testcase_15 AC 113 ms
70,908 KB
testcase_16 AC 112 ms
70,440 KB
testcase_17 AC 110 ms
69,952 KB
testcase_18 AC 110 ms
70,600 KB
testcase_19 AC 112 ms
69,696 KB
testcase_20 AC 111 ms
69,888 KB
testcase_21 AC 111 ms
70,756 KB
testcase_22 AC 111 ms
69,988 KB
testcase_23 AC 113 ms
70,292 KB
testcase_24 AC 113 ms
71,332 KB
testcase_25 AC 115 ms
70,548 KB
testcase_26 AC 112 ms
70,032 KB
testcase_27 AC 114 ms
69,604 KB
testcase_28 AC 112 ms
70,876 KB
testcase_29 AC 117 ms
69,528 KB
testcase_30 AC 112 ms
70,060 KB
testcase_31 AC 113 ms
69,376 KB
testcase_32 AC 111 ms
70,132 KB
testcase_33 AC 112 ms
70,232 KB
testcase_34 AC 112 ms
70,680 KB
testcase_35 AC 113 ms
69,600 KB
testcase_36 AC 110 ms
69,608 KB
testcase_37 AC 110 ms
69,728 KB
testcase_38 AC 109 ms
70,524 KB
testcase_39 AC 108 ms
69,488 KB
testcase_40 AC 112 ms
69,952 KB
testcase_41 AC 110 ms
69,720 KB
testcase_42 AC 109 ms
70,424 KB
testcase_43 AC 112 ms
69,592 KB
testcase_44 AC 112 ms
70,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 50
P = int(input())
Q = list(map(int, input().split()))
idx_one = -1
for i in range(len(Q)):
    if Q[i] == 1:
        idx_one = i
        break
ops = []
for j in range(N):
    ops.append((1, j + 1))
idxs = []
for i in range(N):
    if i != idx_one:
        idxs.append(i)
pp = 1
while (1 << pp) <= P:
    pp += 1
prev = idx_one
for i in range(pp):
    ops.append((4, prev + 1, prev + 1, idxs[i] + 1))
    prev = idxs[i]
tas = []
now = P
for i in range(pp):
    if (now >> i) & 1:
        tas.append(idxs[i])
if len(tas) == 1:
    idxs[pp] = tas[0]
else:
    ops.append((4, tas[0] + 1, tas[1] + 1, idxs[pp] + 1))
    for i in range(2, len(tas)):
        ops.append((4, tas[i] + 1, idxs[pp] + 1, idxs[pp] + 1))
for i in range(N):
    if not i in [idx_one, idxs[pp]]:
        ops.append((3, idxs[pp] + 1, i + 1, i + 1))
print(len(ops))
for op in ops:
    print(op[0])
    print(*op[1:])
0