結果
| 問題 |
No.2891 Mint
|
| コンテスト | |
| ユーザー |
Mr73
|
| 提出日時 | 2024-09-14 00:04:52 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 131 bytes |
| コンパイル時間 | 1,374 ms |
| コンパイル使用メモリ | 28,416 KB |
| 実行使用メモリ | 13,764 KB |
| 最終ジャッジ日時 | 2024-09-14 00:04:57 |
| 合計ジャッジ時間 | 4,841 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 12 WA * 5 TLE * 1 -- * 36 |
ソースコード
#include <stdio.h>
int main(){
int m, n, s = 0;
scanf("%d %d", &n,&m);
for(int i=1; i<=n; i++){
s = s+ m%i;
}
printf("%d\n",s);
}
Mr73