結果
問題 | No.1559 Next Rational |
ユーザー | 👑 Nachia |
提出日時 | 2021-06-25 22:10:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 71,808 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 08:29:57 |
合計ジャッジ時間 | 1,464 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 11 ms
5,376 KB |
testcase_06 | AC | 14 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
ソースコード
#include <iostream> #include <atcoder/modint> using namespace std; using ll = long long; using ull = unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) using mll = atcoder::static_modint<1000000007>; ull N; mll A,B,K; int main(){ cin >> N; if(N >= 100000000) exit(0); { int a,b,k; cin >> a >> b >> k; A=a; B=b; K=k; } for(ull i=1; i<N; i++){ mll C = (B * B + K) / A; A = B; B = C; } cout << A.val() << "\n"; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ ios::sync_with_stdio(false); cin.tie(nullptr); } } ios_do_not_sync_inst;