結果
問題 | No.1312 Snake Eyes |
ユーザー | hiro71687k |
提出日時 | 2023-05-06 05:05:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,176 bytes |
コンパイル時間 | 4,791 ms |
コンパイル使用メモリ | 262,624 KB |
実行使用メモリ | 19,120 KB |
最終ジャッジ日時 | 2024-05-02 21:18:33 |
合計ジャッジ時間 | 7,930 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
18,816 KB |
testcase_01 | AC | 9 ms
18,816 KB |
testcase_02 | AC | 8 ms
18,944 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 8 ms
18,788 KB |
testcase_06 | AC | 8 ms
18,944 KB |
testcase_07 | AC | 8 ms
18,916 KB |
testcase_08 | AC | 10 ms
18,816 KB |
testcase_09 | AC | 8 ms
18,816 KB |
testcase_10 | WA | - |
testcase_11 | AC | 9 ms
18,780 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 9 ms
18,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 9 ms
18,932 KB |
testcase_18 | WA | - |
testcase_19 | AC | 8 ms
18,816 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 8 ms
18,780 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 9 ms
18,944 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 8 ms
18,816 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 9 ms
18,816 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | AC | 8 ms
18,944 KB |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | WA | - |
testcase_67 | AC | 8 ms
18,816 KB |
testcase_68 | WA | - |
testcase_69 | WA | - |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | WA | - |
testcase_73 | WA | - |
testcase_74 | WA | - |
testcase_75 | WA | - |
testcase_76 | WA | - |
testcase_77 | AC | 24 ms
18,944 KB |
testcase_78 | WA | - |
testcase_79 | WA | - |
testcase_80 | AC | 23 ms
18,932 KB |
testcase_81 | AC | 19 ms
18,944 KB |
testcase_82 | WA | - |
testcase_83 | WA | - |
testcase_84 | AC | 23 ms
18,816 KB |
testcase_85 | WA | - |
testcase_86 | WA | - |
testcase_87 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll=long long; using ld=long double; ld pie=3.141592653589793; ll inf=14449999999999999; ll mod=998244353; ll modpow(ll x, ll n) { if(n==0) return 1; //再帰の終了条件 else if(n%2==1) { return (x*modpow(x, n-1)); //nが奇数ならnを1ずらす } else return modpow((x*x), n/2); //nが偶数ならnが半分になる } int main(){ ll n; cin >> n; if (n==1) { cout << 2 << endl; return 0; }else if (n==2) { cout << 3 << endl; return 0; } ll ans=n-1; vector<ll>y(2000000,1); for (ll i = 0; i < y.size(); i++) { y[i]+=i; } for (ll i = 2; i <=43; i++) { bool ok=false; for (ll j = 2; j >=0; j++) { y[j]+=modpow(j,i); if (y[j]>n) { break; } if (n%y[j]==0&&n/y[j]<j) { ok=true; ans=j; break; } } if (!ok) { break; } } cout << ans << endl; }