結果
問題 | No.2177 Recurring ab |
ユーザー | lddlinan |
提出日時 | 2023-03-16 14:41:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 932 bytes |
コンパイル時間 | 1,136 ms |
コンパイル使用メモリ | 102,244 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-18 09:21:10 |
合計ジャッジ時間 | 2,037 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
ソースコード
#include<stdio.h> #include<string.h> #include<stdlib.h> #include <math.h> #include <map> #include <vector> #include <queue> #include <deque> #include <set> #include <stack> #include <algorithm> #include <array> #include <unordered_set> #include <unordered_map> #include <string> using namespace std; bool rcmp(int a, int b) { return a>b; } typedef long long LL; int main() { int n, i, a, b; LL xa, xb, xc, xx, r, x1, x2; double xq; scanf("%d", &n); r=0; for (a=0; a<10; a++) for (b=0; b<10; b++) if (a!=b) { xa=1; xb=-n*a; xc=-(b*n+1); xx = xb*xb-4*xa*xc; if (xx<0) continue; xq = sqrt(xx); x1=(-xb-xq)/2; x1-=2; while(x1*x1+xb*x1+xc>=0) x1++; if (x1<=a) x1=a+1; if (x1<=b) x1=b+1; x2=(-xb+xq)/2; x2+=2; while(x2*x2+xb*x2+xc>=0) x2--; if (x2>=x1) r+=(x2-x1+1); } printf("%lld\n", r); return 0; }