結果
| 問題 | No.2880 Max Sigma Mod |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-09-17 23:54:38 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 252 bytes |
| コンパイル時間 | 1,663 ms |
| コンパイル使用メモリ | 166,492 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-17 23:54:41 |
| 合計ジャッジ時間 | 3,174 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 WA * 30 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
int n,m;
cin>>n>>m;
for(int i=n;i<=n;i++){
int ans=0;
for(int j=1;j<=m;j++){
ans+=i%j;
}
cout<<ans<<'\n';
}
}