結果
問題 | No.2032 Let's Write Multiples!! |
ユーザー | pockyny |
提出日時 | 2022-08-16 07:10:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 775 ms |
コンパイル使用メモリ | 81,884 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 21:58:11 |
合計ジャッジ時間 | 6,248 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
#include <iostream> #include <atcoder/math> using namespace std; using namespace atcoder; typedef long long ll; ll solve(ll l,ll r,ll k,ll d,ll x){//count [l,r)*k mod d >=x ll c1 = floor_sum(r,d,k,0) - floor_sum(l,d,k,0); ll c2 = floor_sum(r,d,k,d - x) - floor_sum(l,d,k,d - x) - (r - l); return (r - l) - (c1 - c2); } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int t; cin >> t; while(t){ t--; ll l,r,k,c; cin >> l >> r >> k >> c; ll le = (l + k - 1)/k,ri = r/k + 1; ll i,ans = 0,now = 1; for(i=0;i<10;i++){ ans += solve(le,ri,k,now*10,now*c) - solve(le,ri,k,now*10,now*(c + 1)); now *= 10; } cout << ans << "\n"; } }