結果
| 問題 | No.2880 Max Sigma Mod |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2024-09-23 01:05:27 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 506 ms |
| コンパイル使用メモリ | 21,348 KB |
| 実行使用メモリ | 15,812 KB |
| 最終ジャッジ日時 | 2026-09-02 21:12:21 |
| 合計ジャッジ時間 | 8,049 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 WA * 30 |
ソースコード
import sys
input = sys.stdin.readline
N,M=map(int,input().split())
score=0
for i in range(1,M+1):
score+=N%i
print(score)
titia