結果
問題 | No.1899 L1 Cafe |
ユーザー | 37zigen |
提出日時 | 2022-01-31 06:23:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 482 bytes |
コンパイル時間 | 2,792 ms |
コンパイル使用メモリ | 142,952 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 23:59:02 |
合計ジャッジ時間 | 6,695 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
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 | - |
ソースコード
#include<cstdio> #include<atcoder/all> #include<assert.h> using namespace atcoder; typedef long long ll; int main() { ll T; scanf("%lld", &T); assert(1 <= T && T <= 1e4); while (T--) { ll n, a, b; scanf("%lld%lld%lld", &n, &a, &b); assert(2 <= n && n <= 1e9); assert(1 <= a && a <= 1e9); assert(1 <= b && b <= 1e9); ll ans = floor_sum(n/a, 1, -a, n-a) + floor_sum(n/b, 1, -b, n-b) - floor_sum(n/a, b, -a, n-a); printf("%lld\n", ans); } return 0; }