結果
問題 | No.2940 Sigma Sigma Div Floor Problem |
ユーザー | titia |
提出日時 | 2024-10-18 22:11:16 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 235 bytes |
コンパイル時間 | 278 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 67,456 KB |
最終ジャッジ日時 | 2024-10-18 22:47:34 |
合計ジャッジ時間 | 10,638 ms |
ジャッジサーバーID (参考情報) |
judge8 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,832 KB |
testcase_01 | AC | 37 ms
52,976 KB |
testcase_02 | AC | 47 ms
58,636 KB |
testcase_03 | AC | 143 ms
59,836 KB |
testcase_04 | AC | 42 ms
52,408 KB |
testcase_05 | AC | 43 ms
52,700 KB |
testcase_06 | AC | 41 ms
53,088 KB |
testcase_07 | AC | 41 ms
52,604 KB |
testcase_08 | AC | 46 ms
58,368 KB |
testcase_09 | AC | 43 ms
52,204 KB |
testcase_10 | AC | 42 ms
52,376 KB |
testcase_11 | AC | 61 ms
58,932 KB |
testcase_12 | AC | 94 ms
58,372 KB |
testcase_13 | AC | 61 ms
59,652 KB |
testcase_14 | AC | 52 ms
58,572 KB |
testcase_15 | AC | 79 ms
58,348 KB |
testcase_16 | AC | 51 ms
58,892 KB |
testcase_17 | AC | 1,350 ms
58,624 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
08_evil_01.txt | -- | - |
ソースコード
import sys input = sys.stdin.readline mod=998244353 N=int(input()) ANS=0 for i in range(1,N+1): now=1 while now<=i: k=i//now nec=i//k+1 ANS=(ANS+k*(nec-now))%mod now=nec print(ANS)