結果

問題 No.814 ジジ抜き
ユーザー akakimidoriakakimidori
提出日時 2019-04-14 01:48:59
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 289 ms / 3,000 ms
コード長 808 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-09-15 11:29:19
合計ジャッジ時間 6,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 283 ms
8,688 KB
testcase_05 AC 282 ms
8,832 KB
testcase_06 AC 289 ms
8,692 KB
testcase_07 AC 91 ms
5,376 KB
testcase_08 AC 144 ms
8,576 KB
testcase_09 AC 210 ms
6,784 KB
testcase_10 AC 274 ms
8,436 KB
testcase_11 AC 284 ms
8,560 KB
testcase_12 AC 131 ms
5,376 KB
testcase_13 AC 130 ms
5,376 KB
testcase_14 AC 190 ms
6,940 KB
testcase_15 AC 103 ms
5,376 KB
testcase_16 AC 68 ms
5,376 KB
testcase_17 AC 230 ms
7,416 KB
testcase_18 AC 180 ms
6,400 KB
testcase_19 AC 195 ms
8,576 KB
testcase_20 AC 142 ms
5,376 KB
testcase_21 AC 110 ms
5,760 KB
testcase_22 AC 127 ms
7,412 KB
testcase_23 AC 93 ms
5,376 KB
testcase_24 AC 134 ms
6,784 KB
testcase_25 AC 96 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<stdint.h>
#include<inttypes.h>

typedef int32_t i32;
typedef int64_t i64;

#define MIN(a,b) ((a) < (b) ? (a) : (b))

void run (void) {
  i32 n;
  scanf ("%" SCNi32, &n);
  i64 *k = (i64 *) calloc (3 * n, sizeof (i64));
  i64 *a = k + n;
  i64 *d = a + n;
  for (i32 i = 0; i < n; ++i) {
    scanf ("%" SCNi64 "%" SCNi64 "%" SCNi64, k + i, a + i, d + i);
    d[i] = (i64) 1 << d[i];
  }
  i64 l = -1;
  i64 r = 1000000000000000000LL;
  while (r - l > 1) {
    i64 m = (r + l) / 2;
    i64 cnt = 0;
    for (i32 i = 0; i < n; ++i) {
      if (a[i] > m) continue;
      cnt ^= MIN(k[i], 1 + (m - a[i]) / d[i]);
    }
    if (cnt % 2 == 1) {
      r = m;
    } else {
      l = m;
    }
  }
  printf ("%" PRIi64 "\n", r);
}

int main (void) {
  run();
  return 0;
}
0