結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-18 05:03:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 3,079 ms
コンパイル使用メモリ 244,716 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 05:03:44
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 37 ms
5,376 KB
testcase_05 AC 39 ms
5,376 KB
testcase_06 AC 36 ms
5,376 KB
testcase_07 AC 36 ms
5,376 KB
testcase_08 AC 37 ms
5,376 KB
testcase_09 AC 35 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using lint = long long;

int main() {
    int t;
    cin >> t;
    while (t--) {
        lint m;
        cin >> m;
        lint ans = 0;
        lint ten = 1;
        for (lint i = 1; i <= 9; i++) {
            lint d;
            cin >> d;
            while (d--) {
                ans += ten * i;
                ten *= 10LL;
            }
        }
        lint digit = to_string(m - 1).size();
        ans *= powl(10LL, digit);
        lint r = ans % m;
        if (r > 0) {
            ans += m - r;
        }
        cout << ans << endl;
    }
}
0