結果
問題 | No.810 割った余りの個数 |
ユーザー | funakoshi |
提出日時 | 2019-08-29 09:33:56 |
言語 | C (gcc 12.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 472 bytes |
コンパイル時間 | 285 ms |
コンパイル使用メモリ | 32,000 KB |
実行使用メモリ | 784,824 KB |
最終ジャッジ日時 | 2024-11-17 16:48:20 |
合計ジャッジ時間 | 38,672 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 286 ms
397,696 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 281 ms
397,568 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 282 ms
397,568 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 291 ms
399,140 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 290 ms
397,696 KB |
testcase_09 | MLE | - |
testcase_10 | AC | 291 ms
397,696 KB |
testcase_11 | MLE | - |
testcase_12 | AC | 296 ms
399,268 KB |
testcase_13 | MLE | - |
testcase_14 | AC | 277 ms
392,320 KB |
testcase_15 | MLE | - |
testcase_16 | AC | 283 ms
392,320 KB |
testcase_17 | AC | 286 ms
392,448 KB |
testcase_18 | AC | 284 ms
392,320 KB |
testcase_19 | AC | 282 ms
392,448 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | WA | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> #include <math.h> int main(void) { long long int left,right,mod,surplus,cnt=0; int numofmod[100000000]={0}; scanf("%lld %lld %lld",&left,&right,&mod); for(int i=left;i<=right;i++) { surplus=i%mod; numofmod[surplus]++; } for(int i=0;i<100000;i++) { if(numofmod[i]>0) { cnt++; } } printf("%lld",cnt); }