結果

問題 No.2965 Don't Stop the Game again
ユーザー 遭難者遭難者
提出日時 2024-10-28 23:52:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 887 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 83,924 KB
平均クエリ数 288.96
最終ジャッジ日時 2024-10-28 23:52:20
合計ジャッジ時間 8,503 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
70,656 KB
testcase_01 AC 109 ms
69,676 KB
testcase_02 AC 110 ms
70,024 KB
testcase_03 AC 113 ms
69,728 KB
testcase_04 AC 112 ms
70,824 KB
testcase_05 AC 110 ms
70,532 KB
testcase_06 AC 113 ms
70,400 KB
testcase_07 AC 111 ms
70,544 KB
testcase_08 AC 113 ms
69,912 KB
testcase_09 AC 112 ms
69,836 KB
testcase_10 AC 112 ms
69,608 KB
testcase_11 AC 111 ms
69,500 KB
testcase_12 AC 114 ms
69,604 KB
testcase_13 AC 110 ms
69,460 KB
testcase_14 AC 112 ms
70,788 KB
testcase_15 AC 113 ms
69,984 KB
testcase_16 AC 113 ms
70,108 KB
testcase_17 AC 111 ms
70,752 KB
testcase_18 AC 119 ms
71,056 KB
testcase_19 AC 111 ms
71,356 KB
testcase_20 AC 111 ms
70,744 KB
testcase_21 AC 112 ms
70,500 KB
testcase_22 AC 111 ms
69,436 KB
testcase_23 AC 112 ms
70,540 KB
testcase_24 AC 112 ms
70,672 KB
testcase_25 AC 112 ms
70,088 KB
testcase_26 AC 112 ms
69,840 KB
testcase_27 AC 112 ms
69,908 KB
testcase_28 AC 113 ms
70,888 KB
testcase_29 AC 123 ms
70,660 KB
testcase_30 AC 112 ms
71,240 KB
testcase_31 AC 111 ms
70,172 KB
testcase_32 AC 111 ms
69,852 KB
testcase_33 AC 112 ms
71,016 KB
testcase_34 AC 112 ms
70,764 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 111 ms
69,924 KB
testcase_38 AC 107 ms
69,228 KB
testcase_39 AC 111 ms
70,004 KB
testcase_40 AC 110 ms
70,728 KB
testcase_41 AC 111 ms
70,456 KB
testcase_42 AC 109 ms
69,380 KB
testcase_43 AC 111 ms
70,148 KB
testcase_44 AC 114 ms
70,428 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