結果

問題 No.2965 Don't Stop the Game again
ユーザー ねしんねしん
提出日時 2024-10-29 08:15:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,024 ms
コード長 757 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 60,600 KB
最終ジャッジ日時 2024-10-29 08:34:23
合計ジャッジ時間 6,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,644 KB
testcase_01 AC 41 ms
59,144 KB
testcase_02 AC 41 ms
59,136 KB
testcase_03 AC 44 ms
59,676 KB
testcase_04 AC 42 ms
60,028 KB
testcase_05 AC 42 ms
60,492 KB
testcase_06 AC 42 ms
58,772 KB
testcase_07 AC 42 ms
60,528 KB
testcase_08 AC 41 ms
59,632 KB
testcase_09 AC 42 ms
58,772 KB
testcase_10 AC 42 ms
59,332 KB
testcase_11 AC 42 ms
59,344 KB
testcase_12 AC 42 ms
59,044 KB
testcase_13 AC 42 ms
59,724 KB
testcase_14 AC 42 ms
60,160 KB
testcase_15 AC 42 ms
59,240 KB
testcase_16 AC 42 ms
59,496 KB
testcase_17 AC 43 ms
59,312 KB
testcase_18 AC 43 ms
60,468 KB
testcase_19 AC 42 ms
59,940 KB
testcase_20 AC 42 ms
59,448 KB
testcase_21 AC 43 ms
59,396 KB
testcase_22 AC 43 ms
59,020 KB
testcase_23 AC 43 ms
59,544 KB
testcase_24 AC 43 ms
60,288 KB
testcase_25 AC 42 ms
60,036 KB
testcase_26 AC 43 ms
59,576 KB
testcase_27 AC 42 ms
59,636 KB
testcase_28 AC 43 ms
60,600 KB
testcase_29 AC 41 ms
59,020 KB
testcase_30 AC 42 ms
59,448 KB
testcase_31 AC 41 ms
58,784 KB
testcase_32 AC 42 ms
59,492 KB
testcase_33 AC 41 ms
58,776 KB
testcase_34 AC 42 ms
58,792 KB
testcase_35 AC 43 ms
60,308 KB
testcase_36 AC 43 ms
59,980 KB
testcase_37 AC 41 ms
59,636 KB
testcase_38 AC 42 ms
59,440 KB
testcase_39 AC 42 ms
59,744 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