結果

問題 No.2965 Don't Stop the Game again
ユーザー ねしんねしん
提出日時 2024-10-24 12:10:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,024 ms
コード長 779 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 78,132 KB
平均クエリ数 301.84
最終ジャッジ日時 2024-10-28 23:36:25
合計ジャッジ時間 8,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
76,160 KB
testcase_01 AC 132 ms
76,740 KB
testcase_02 AC 117 ms
76,568 KB
testcase_03 AC 129 ms
76,836 KB
testcase_04 AC 113 ms
75,560 KB
testcase_05 AC 115 ms
76,420 KB
testcase_06 AC 115 ms
76,968 KB
testcase_07 AC 115 ms
76,136 KB
testcase_08 AC 114 ms
75,880 KB
testcase_09 AC 121 ms
76,844 KB
testcase_10 AC 124 ms
75,452 KB
testcase_11 AC 123 ms
76,636 KB
testcase_12 AC 120 ms
77,440 KB
testcase_13 AC 114 ms
76,292 KB
testcase_14 AC 113 ms
76,784 KB
testcase_15 AC 115 ms
76,440 KB
testcase_16 AC 116 ms
75,624 KB
testcase_17 AC 117 ms
76,384 KB
testcase_18 AC 122 ms
76,552 KB
testcase_19 AC 122 ms
75,888 KB
testcase_20 AC 117 ms
76,420 KB
testcase_21 AC 116 ms
76,240 KB
testcase_22 AC 122 ms
75,952 KB
testcase_23 AC 123 ms
76,508 KB
testcase_24 AC 122 ms
76,016 KB
testcase_25 AC 116 ms
76,280 KB
testcase_26 AC 114 ms
75,684 KB
testcase_27 AC 118 ms
76,232 KB
testcase_28 AC 125 ms
77,000 KB
testcase_29 AC 116 ms
77,040 KB
testcase_30 AC 119 ms
76,228 KB
testcase_31 AC 115 ms
77,364 KB
testcase_32 AC 117 ms
76,928 KB
testcase_33 AC 115 ms
77,036 KB
testcase_34 AC 115 ms
76,764 KB
testcase_35 AC 113 ms
75,040 KB
testcase_36 AC 119 ms
76,788 KB
testcase_37 AC 119 ms
78,132 KB
testcase_38 AC 112 ms
77,280 KB
testcase_39 AC 113 ms
75,632 KB
testcase_40 AC 111 ms
75,872 KB
testcase_41 AC 113 ms
75,644 KB
testcase_42 AC 111 ms
75,256 KB
testcase_43 AC 126 ms
75,616 KB
testcase_44 AC 121 ms
75,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P=int(input())
Q=list(map(int,input().split()))
N=50
ind1=-1
for i in range(N):
  if Q[i]==1:
    ind1=i+1
    break
ind2=-1
ind3=-1
ans=[]
for i in range(N):
  for j in range(N):
    if i+1==ind1 or j+1==ind1 or i==j:
      continue
    if Q[i]==Q[j]:
      ind2=i+1
      ind3=j+1
binP=bin(P)
binP=binP[2:]
if P==2:
	for i in range(N):
	  ans.append([1,i+1])
	ans.append([4,ind3,ind3,ind3])
else:
	for i in range(N):
	  ans.append([1,i+1])
	for i in range(1,len(binP)):
	  ans.append([4,ind2,ind2,ind2])
	  if binP[i]=="1":
	    ans.append([4,ind2,ind3,ind2])
ans.append([3,ind2,ind3,ind3])
ans.append([3,ind2,ind3,ind2])
for i in range(1,51):
  if i==ind1:
    continue
  ans.append([3,ind3,i,i])
print(len(ans))
for i in range(len(ans)):
	print(ans[i][0])
	print(*ans[i][1:])
0