結果

問題 No.2965 Don't Stop the Game again
ユーザー lif4635lif4635
提出日時 2024-11-16 16:35:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,024 ms
コード長 1,886 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-11-16 16:35:42
合計ジャッジ時間 6,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,528 KB
testcase_01 AC 48 ms
54,656 KB
testcase_02 AC 49 ms
54,656 KB
testcase_03 AC 48 ms
54,528 KB
testcase_04 AC 48 ms
54,528 KB
testcase_05 AC 48 ms
54,656 KB
testcase_06 AC 48 ms
54,528 KB
testcase_07 AC 51 ms
54,656 KB
testcase_08 AC 51 ms
54,400 KB
testcase_09 AC 52 ms
54,528 KB
testcase_10 AC 51 ms
54,656 KB
testcase_11 AC 48 ms
54,656 KB
testcase_12 AC 48 ms
54,400 KB
testcase_13 AC 49 ms
54,400 KB
testcase_14 AC 51 ms
54,656 KB
testcase_15 AC 48 ms
54,528 KB
testcase_16 AC 48 ms
54,400 KB
testcase_17 AC 49 ms
54,528 KB
testcase_18 AC 48 ms
54,144 KB
testcase_19 AC 48 ms
54,528 KB
testcase_20 AC 48 ms
54,272 KB
testcase_21 AC 51 ms
54,656 KB
testcase_22 AC 48 ms
54,656 KB
testcase_23 AC 48 ms
54,272 KB
testcase_24 AC 48 ms
54,656 KB
testcase_25 AC 48 ms
54,656 KB
testcase_26 AC 48 ms
54,528 KB
testcase_27 AC 49 ms
54,656 KB
testcase_28 AC 48 ms
54,400 KB
testcase_29 AC 49 ms
54,656 KB
testcase_30 AC 48 ms
54,528 KB
testcase_31 AC 48 ms
54,528 KB
testcase_32 AC 49 ms
54,016 KB
testcase_33 AC 47 ms
54,400 KB
testcase_34 AC 47 ms
54,528 KB
testcase_35 AC 48 ms
54,144 KB
testcase_36 AC 48 ms
54,272 KB
testcase_37 AC 48 ms
54,656 KB
testcase_38 AC 49 ms
54,400 KB
testcase_39 AC 48 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""input"""
#int-input
# input = sys.stdin.readline
def II(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(MI())
#str-input
def SI(): return input()
def MSI(): return input().split()
def SI_L(): return list(SI())
def SI_LI(): return list(map(int, SI()))
#multiple-input
def LLI(n): return [LI() for _ in range(n)]
def LSI(n): return [SI() for _ in range(n)]
#1-indexを0-indexでinput
def MI_1(): return map(lambda x:int(x)-1, input().split())
def TI_1(): return tuple(MI_1())
def LI_1(): return list(MI_1())

from collections import deque,defaultdict,Counter
mod = 998244353

class fenwick_tree():
    n=1
    data=[0 for i in range(n)]
    def __init__(self,N):
        self.n=N
        self.data=[0 for i in range(N)]
    def add(self,p,x):
        assert 0<=p<self.n,"0<=p<n,p={0},n={1}".format(p,self.n)
        p+=1
        while(p<=self.n):
            self.data[p-1]+=x
            p+=p& -p
    def sum(self,l,r):
        assert (0<=l and l<=r and r<=self.n),"0<=l<=r<=n,l={0},r={1},n={2}".format(l,r,self.n)
        return self.sum0(r)-self.sum0(l)
    def sum0(self,r):
        s=0
        while(r>0):
            s+=self.data[r-1]
            r-=r&-r
        return s

#必ず入っている集合を見つける
#必ず以下マン、以上マンを見つける
# 上72回まで
# その後は8回

m = II()
q = LI()

m -= 2
print(1+49+1+m.bit_count()+48)


p = [*range(1,51)]
print(2,*p)

#総和をこれにする
#奇数で200以上になっているはず
#mを作ったほうが早くね

# float power(int a, int b) {
#     if (b == 0) return 1;
#     if (b&1) return power(a, b-1)*a;
#     float r = power(a, b/2); 
#     return r*r;
# }
for i in range(1,50):
    print(4,i,i,i+1) #2に2を保存

print(4,1,1,50)
for i in range(49):
    if (m >> i)&1:
        print(4,50,i+1,50)

for i in range(2,50):
    print(4,50,50,i)

0