結果

問題 No.1781 LCM
ユーザー testestesttestestest
提出日時 2021-11-18 00:40:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 298 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 58,620 KB
最終ジャッジ日時 2024-07-17 16:31:08
合計ジャッジ時間 34,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 4,769 ms
58,520 KB
testcase_02 AC 4,826 ms
58,540 KB
testcase_03 AC 4,704 ms
58,580 KB
testcase_04 AC 4,724 ms
58,620 KB
testcase_05 AC 4,794 ms
58,532 KB
testcase_06 AC 4,732 ms
58,544 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 541 ms
20,096 KB
testcase_10 AC 935 ms
20,096 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 513 ms
20,096 KB
testcase_14 AC 850 ms
20,096 KB
testcase_15 AC 372 ms
14,944 KB
testcase_16 AC 250 ms
13,568 KB
testcase_17 AC 534 ms
16,384 KB
testcase_18 AC 428 ms
15,104 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
piyo=[1]*(M+1)
hoge=list(range(M+1))

for p in range(2,M+1):
  if hoge[p]==p:
    for i in range(p,M+1,p):
      neko=0
      while hoge[i]%p==0:
        hoge[i]//=p
        neko+=1
      piyo[i]*=neko+1

print(sum(pow(nyaa,N,998244353) for nyaa in piyo[1:])%998244353)
0