結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー InTheBloomInTheBloom
提出日時 2023-12-02 15:02:29
言語 D
(dmd 2.106.1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 733 bytes
コンパイル時間 3,422 ms
コンパイル使用メモリ 174,184 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-19 21:29:28
合計ジャッジ時間 4,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 20 ms
6,816 KB
testcase_05 AC 20 ms
6,820 KB
testcase_06 AC 19 ms
6,816 KB
testcase_07 AC 20 ms
6,820 KB
testcase_08 AC 20 ms
6,816 KB
testcase_09 AC 19 ms
6,820 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int T = readln.chomp.to!int;
    foreach (_; 0..T) {
        int M = readln.chomp.to!int;
        int[] d = readln.split.to!(int[]);
        solve(M, d);
    }
}

void solve (int M, int[] d) {
    /* 条件がゆるいので、先に必要条件だけ揃えて後は端の方で調整する */
    long X = 0;
    int radix = 0;
    foreach (i; 0..d.length) {
        foreach (j; 0..d[i]) {
            X += (i+1)*10L^^radix;
            radix++;
        }
    }

    X *= 10L^^9;
    long cur = X % M;

    if (0 < cur) X += M - cur;

    writeln(X);
}

void read (T...) (string S, ref T args) {
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0