結果

問題 No.747 循環小数N桁目 Hard
ユーザー merom686
提出日時 2018-10-19 21:49:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 20:24:40
合計ジャッジ時間 3,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 120
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

int main() {
    //for (int i = 0; i < 6; i++) {
    //    int x = i;
    //    for (int j = 0; j < 6; j++) {
    //        cout << x << ' ';
    //        x *= i;
    //        x %= 6;
    //    }
    //    cout << endl;
    //}

    ios::sync_with_stdio(false);
    cin.tie(0);

    string n, k;
    cin >> n >> k;

    int r = 0;
    for (int i = 0; i < n.size(); i++) {
        r *= 10;
        r += n[i] - '0';
        r %= 6;
    }

    if ((k.back() - '0') % 2 == 0) r = r * r % 6;

    cout << "285714"[(r + 5) % 6] << endl;

    return 0;
}
0