結果
| 問題 |
No.2891 Mint
|
| コンテスト | |
| ユーザー |
Mr73
|
| 提出日時 | 2024-09-14 00:06:53 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 175 bytes |
| コンパイル時間 | 320 ms |
| コンパイル使用メモリ | 30,848 KB |
| 実行使用メモリ | 13,756 KB |
| 最終ジャッジ日時 | 2024-09-14 00:06:57 |
| 合計ジャッジ時間 | 3,784 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 2 TLE * 1 -- * 51 |
ソースコード
#include <stdio.h>
int main(){
long long unsigned int m, n, s = 0;
scanf("%lld %lld", &n,&m);
for(long long unsigned int i=1; i<=n; i++){
s = s+ m%i;
}
printf("%lld\n",s);
}
Mr73