結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
52,444 KB
testcase_01 AC 36 ms
54,028 KB
testcase_02 AC 36 ms
52,268 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,344 KB
testcase_05 AC 37 ms
52,312 KB
testcase_06 AC 37 ms
53,080 KB
testcase_07 AC 36 ms
52,248 KB
testcase_08 AC 37 ms
53,192 KB
testcase_09 AC 37 ms
52,524 KB
testcase_10 AC 37 ms
53,500 KB
testcase_11 AC 67 ms
60,832 KB
testcase_12 AC 44 ms
60,756 KB
testcase_13 AC 44 ms
61,208 KB
testcase_14 AC 43 ms
61,016 KB
testcase_15 AC 45 ms
61,136 KB
testcase_16 AC 44 ms
60,288 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 38 ms
53,084 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
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))
0