結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー titiatitia
提出日時 2024-10-21 01:22:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 6,000 ms
コード長 238 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 85,040 KB
最終ジャッジ日時 2024-10-21 01:22:49
合計ジャッジ時間 4,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 61 ms
52,800 KB
testcase_02 AC 37 ms
53,572 KB
testcase_03 AC 45 ms
62,084 KB
testcase_04 AC 38 ms
52,252 KB
testcase_05 AC 37 ms
51,944 KB
testcase_06 AC 37 ms
52,496 KB
testcase_07 AC 38 ms
52,092 KB
testcase_08 AC 38 ms
52,068 KB
testcase_09 AC 37 ms
51,876 KB
testcase_10 AC 46 ms
51,828 KB
testcase_11 AC 46 ms
61,928 KB
testcase_12 AC 45 ms
60,948 KB
testcase_13 AC 45 ms
60,912 KB
testcase_14 AC 45 ms
60,112 KB
testcase_15 AC 45 ms
61,408 KB
testcase_16 AC 46 ms
60,696 KB
testcase_17 AC 53 ms
64,184 KB
testcase_18 AC 136 ms
82,448 KB
testcase_19 AC 111 ms
80,908 KB
testcase_20 AC 108 ms
80,736 KB
testcase_21 AC 174 ms
84,656 KB
testcase_22 AC 62 ms
70,972 KB
testcase_23 AC 67 ms
71,912 KB
testcase_24 AC 106 ms
80,180 KB
testcase_25 AC 97 ms
79,892 KB
testcase_26 AC 117 ms
81,716 KB
testcase_27 AC 37 ms
53,200 KB
testcase_28 AC 182 ms
85,040 KB
testcase_29 AC 224 ms
84,956 KB
testcase_30 AC 54 ms
66,048 KB
testcase_31 AC 67 ms
72,276 KB
testcase_32 AC 51 ms
63,780 KB
08_evil_01.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

N=int(input())

LIST=[0]*(N+1)

for i in range(1,N+1):
    for j in range(i,N+1,i):
        LIST[j]+=1

for i in range(1,N+1):
    LIST[i]=(LIST[i]+LIST[i-1])%mod

print(sum(LIST)%mod)
0