結果

問題 No.814 ジジ抜き
ユーザー nebukuro09nebukuro09
提出日時 2019-04-18 05:05:42
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 675 ms / 3,000 ms
コード長 745 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 119,028 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-06-22 00:44:05
合計ジャッジ時間 13,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 675 ms
39,724 KB
testcase_05 AC 662 ms
40,640 KB
testcase_06 AC 654 ms
40,292 KB
testcase_07 AC 245 ms
24,372 KB
testcase_08 AC 468 ms
40,028 KB
testcase_09 AC 456 ms
25,080 KB
testcase_10 AC 619 ms
39,564 KB
testcase_11 AC 650 ms
40,788 KB
testcase_12 AC 290 ms
23,816 KB
testcase_13 AC 292 ms
24,100 KB
testcase_14 AC 457 ms
29,056 KB
testcase_15 AC 230 ms
15,488 KB
testcase_16 AC 183 ms
16,428 KB
testcase_17 AC 520 ms
31,772 KB
testcase_18 AC 407 ms
25,228 KB
testcase_19 AC 537 ms
41,196 KB
testcase_20 AC 311 ms
23,684 KB
testcase_21 AC 290 ms
24,048 KB
testcase_22 AC 389 ms
32,080 KB
testcase_23 AC 227 ms
19,508 KB
testcase_24 AC 371 ms
25,284 KB
testcase_25 AC 272 ms
23,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;

void main() {
    auto N = readln.chomp.to!int;
    auto KLD = N.iota.map!(_ => readln.split.map!(to!long).array).array;

    bool check(long x) {
        long cnt = 0;
        foreach (kld; KLD) {
            auto k = kld[0], l = kld[1], d = kld[2];
            if (x < l) continue;
            cnt ^= min(k, (x - l) / (1L << d) + 1) & 1;
        }
        return cnt & 1;
    }

    long hi = 10L ^^ 18;
    long lo = -1;

    while (hi - lo > 1) {
        long mid = (hi + lo) / 2;
        (check(mid) ? hi : lo) = mid;
    }

    hi.writeln;
}
0