結果

問題 No.747 循環小数N桁目 Hard
ユーザー Shuz*Shuz*
提出日時 2018-10-19 22:30:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,364 bytes
コンパイル時間 1,832 ms
コンパイル使用メモリ 174,616 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 16:17:45
合計ジャッジ時間 4,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 2 ms
5,376 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 3 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 2 ms
5,376 KB
testcase_47 WA -
testcase_48 AC 2 ms
5,376 KB
testcase_49 WA -
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 3 ms
5,376 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 3 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 3 ms
5,376 KB
testcase_65 AC 2 ms
5,376 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 3 ms
5,376 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 2 ms
5,376 KB
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 2 ms
5,376 KB
testcase_76 WA -
testcase_77 AC 2 ms
5,376 KB
testcase_78 AC 2 ms
5,376 KB
testcase_79 WA -
testcase_80 AC 2 ms
5,376 KB
testcase_81 WA -
testcase_82 AC 2 ms
5,376 KB
testcase_83 WA -
testcase_84 AC 3 ms
5,376 KB
testcase_85 AC 2 ms
5,376 KB
testcase_86 AC 2 ms
5,376 KB
testcase_87 AC 2 ms
5,376 KB
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 WA -
testcase_93 WA -
testcase_94 WA -
testcase_95 AC 2 ms
5,376 KB
testcase_96 WA -
testcase_97 AC 2 ms
5,376 KB
testcase_98 AC 3 ms
5,376 KB
testcase_99 AC 3 ms
5,376 KB
testcase_100 WA -
testcase_101 AC 2 ms
5,376 KB
testcase_102 WA -
testcase_103 AC 2 ms
5,376 KB
testcase_104 WA -
testcase_105 AC 2 ms
5,376 KB
testcase_106 WA -
testcase_107 AC 3 ms
5,376 KB
testcase_108 AC 2 ms
5,376 KB
testcase_109 AC 2 ms
5,376 KB
testcase_110 WA -
testcase_111 WA -
testcase_112 AC 2 ms
5,376 KB
testcase_113 WA -
testcase_114 AC 3 ms
5,376 KB
testcase_115 AC 3 ms
5,376 KB
testcase_116 AC 3 ms
5,376 KB
testcase_117 AC 3 ms
5,376 KB
testcase_118 AC 3 ms
5,376 KB
testcase_119 WA -
testcase_120 AC 2 ms
5,376 KB
testcase_121 AC 3 ms
5,376 KB
testcase_122 WA -
testcase_123 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <boost/multiprecision/cpp_int.hpp>
using namespace std;
// using namespace boost::multiprecision;

// Define
using ll = long long;
using ull = unsigned long long;
using ld = long double;
using int128 = __int128;
// using cint = cpp_int;
const ll MOD = 1e9 + 7;
const ll INF = LONG_MAX;
const ull MAX = ULONG_MAX;
#define endl '\n'
#define space ' '
#define def inline auto
#define func inline constexpr ll
#define run __attribute__((constructor)) def _
#define all(v) begin(v), end(v)

// Debug
#define debug(...)                                                             \
    {                                                                          \
        cerr << __LINE__ << ": " << #__VA_ARGS__ << " = ";                     \
        for (auto &&X : {__VA_ARGS__}) cerr << "[" << X << "] ";               \
        cerr << endl;                                                          \
    }

// Loop
#define inc(i, a, n) for (ll i = (a), _##i = (n); i <= _##i; ++i)
#define dec(i, a, n) for (ll i = (a), _##i = (n); i >= _##i; --i)
#define each(i, a) for (auto &&i : a)
#define rep(i, n) inc(i, 0, n - 1)

// Stream
#define input(a) scanf("%lld", &(a))
#define output(a) printf("%lld\n", (a))
#define fout(n) cout << fixed << setprecision(n)
#define fasten cin.tie(0), ios::sync_with_stdio(0)

// Speed
run() { fasten, fout(10); }
#pragma GCC optimize("O3")
#pragma GCC optimization_level 3
#pragma GCC target("avx")

// Math
func gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; }
func lcm(ll a, ll b) { return a * b / gcd(a, b); }

ll ctoi(char A) { return A - '0'; }
ll smod6(string A) {
    ll S = 0, D = ctoi(A.back()) & 1;
    for (auto i : A) {
        S += ctoi(i);
    }
    S %= 3;
    S += D * 3;
    return S;
}
ll P(ll A, ll B) {
    ll S;
    if (A == 0) {
        S = 0;
    } else if (A == 1) {
        S = 1;
    } else if (A == 2) {
        ll D[] = {4, 2};
        S = D[B % 2];
    } else if (A == 3) {
        S = 3;
    } else if (A == 4) {
        S = 4;
    } else {
        ll D[] = {1, 5};
        S = D[B % 2];
    }
    return S;
}
ll A[] = {4, 2, 8, 5, 7, 1}, C;
signed main() {
    string S, T;
    cin >> S >> T;
    debug(smod6(S), smod6(T), P(smod6(S), smod6(T)));
    cout << A[P(smod6(S), smod6(T))] << endl;
}

// for compilation: g++ -Ofast -march=native -o _ _.cpp -std=c++17
0