結果

問題 No.2945 Namiki Secondary School
ユーザー lif4635lif4635
提出日時 2024-10-25 21:22:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-10-25 21:22:04
合計ジャッジ時間 2,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,828 KB
testcase_01 AC 39 ms
52,396 KB
testcase_02 AC 41 ms
53,180 KB
testcase_03 AC 39 ms
52,632 KB
testcase_04 AC 39 ms
52,656 KB
testcase_05 AC 39 ms
52,808 KB
testcase_06 AC 38 ms
53,156 KB
testcase_07 AC 39 ms
53,420 KB
testcase_08 AC 42 ms
52,724 KB
testcase_09 AC 39 ms
53,936 KB
testcase_10 AC 39 ms
53,416 KB
testcase_11 AC 39 ms
52,328 KB
testcase_12 AC 39 ms
53,208 KB
testcase_13 AC 39 ms
53,208 KB
testcase_14 AC 38 ms
53,072 KB
testcase_15 AC 39 ms
53,000 KB
testcase_16 AC 38 ms
53,736 KB
testcase_17 AC 40 ms
52,492 KB
testcase_18 AC 41 ms
52,068 KB
testcase_19 AC 40 ms
52,644 KB
testcase_20 AC 41 ms
52,696 KB
testcase_21 AC 38 ms
52,260 KB
testcase_22 AC 38 ms
53,356 KB
testcase_23 AC 38 ms
54,108 KB
testcase_24 AC 38 ms
52,992 KB
testcase_25 AC 39 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int-input
def II(): return int(input())


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
    


n = II()
if n <= 1983:
    print("None")
elif n <= 2007:
    print("Namiki High School")
else:
    print("Namiki Secondary School")
0