結果
問題 | No.810 割った余りの個数 |
ユーザー | mzkr |
提出日時 | 2019-05-06 05:53:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 500 ms |
コンパイル使用メモリ | 65,100 KB |
実行使用メモリ | 102,500 KB |
最終ジャッジ日時 | 2024-06-26 21:31:56 |
合計ジャッジ時間 | 35,487 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,203 ms
13,752 KB |
testcase_01 | AC | 1,201 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1,199 ms
6,940 KB |
testcase_04 | AC | 1,196 ms
6,940 KB |
testcase_05 | AC | 1,202 ms
6,944 KB |
testcase_06 | AC | 1,200 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1,198 ms
6,940 KB |
testcase_09 | AC | 1,199 ms
6,944 KB |
testcase_10 | AC | 1,201 ms
6,944 KB |
testcase_11 | AC | 1,194 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1,201 ms
6,940 KB |
testcase_15 | AC | 1,200 ms
6,944 KB |
testcase_16 | AC | 1,201 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1,194 ms
6,944 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 1,567 ms
6,944 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <iostream> using namespace std; uint8_t d[130000000]; int main() { int l, r, m; cin >> l >> r >> m; for (int i = l; i <= r; ++i) { d[i % m / 8] |= 1 << i % m % 8; } int c = 0; for (int i = 0; i < 130000000; ++i) { for (int j = 0; j < 8; ++j) { if (d[i] << j >> 7) c++; } } cout << c << endl; return 0; }