結果

問題 No.1396 Giri
ユーザー tanon710tanon710
提出日時 2021-02-14 22:40:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 96,956 KB
最終ジャッジ日時 2024-07-22 10:30:41
合計ジャッジ時間 6,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,864 KB
testcase_01 AC 72 ms
68,992 KB
testcase_02 AC 533 ms
96,576 KB
testcase_03 AC 66 ms
68,608 KB
testcase_04 AC 68 ms
69,248 KB
testcase_05 AC 548 ms
96,444 KB
testcase_06 AC 65 ms
68,992 KB
testcase_07 AC 66 ms
68,608 KB
testcase_08 AC 67 ms
68,992 KB
testcase_09 AC 70 ms
68,608 KB
testcase_10 AC 68 ms
68,992 KB
testcase_11 AC 66 ms
69,120 KB
testcase_12 AC 66 ms
68,992 KB
testcase_13 AC 65 ms
69,120 KB
testcase_14 AC 66 ms
68,992 KB
testcase_15 AC 70 ms
69,632 KB
testcase_16 AC 84 ms
77,952 KB
testcase_17 AC 107 ms
84,352 KB
testcase_18 AC 127 ms
84,992 KB
testcase_19 AC 335 ms
89,656 KB
testcase_20 AC 415 ms
93,624 KB
testcase_21 AC 474 ms
95,160 KB
testcase_22 AC 536 ms
96,568 KB
testcase_23 AC 632 ms
96,696 KB
testcase_24 AC 513 ms
96,700 KB
testcase_25 AC 536 ms
96,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

MAXN = 10**6+10
sieve = [i for i in range(MAXN+1)]
p = 2
while p*p <= MAXN:
    if sieve[p] == p:
        for q in range(2*p,MAXN+1,p):
            if sieve[q] == q:
                sieve[q] = p
    p += 1

mod=998244353

n=int(input())
maxprime=-1
for i in range(n,1,-1):
    if sieve[i]==i:
        maxprime=i
        break
dic=collections.defaultdict(int)
for i in range(2,n+1):
    if i==maxprime:
        continue
    tmp=collections.defaultdict(int)
    while i!=1:
        p=sieve[i]
        tmp[p]+=1
        i//=p
    for key in tmp.keys():
        dic[key]=max(dic[key],tmp[key])
ans=1
for key in dic.keys():
    ans*=pow(key,dic[key],mod)
    ans%=mod
print(ans)
0