結果

問題 No.814 ジジ抜き
ユーザー 沙耶花沙耶花
提出日時 2020-12-08 16:56:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 662 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 194,200 KB
最終ジャッジ日時 2025-01-16 19:46:38
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
15,616 KB
testcase_01 AC 3 ms
10,496 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 8 ms
15,616 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 508 ms
10,240 KB
testcase_07 AC 197 ms
7,040 KB
testcase_08 AC 431 ms
10,112 KB
testcase_09 AC 333 ms
8,320 KB
testcase_10 AC 452 ms
10,112 KB
testcase_11 AC 482 ms
10,112 KB
testcase_12 AC 188 ms
6,784 KB
testcase_13 AC 202 ms
6,784 KB
testcase_14 AC 341 ms
8,576 KB
testcase_15 AC 153 ms
6,144 KB
testcase_16 AC 123 ms
6,016 KB
testcase_17 AC 339 ms
8,832 KB
testcase_18 AC 298 ms
8,192 KB
testcase_19 AC 397 ms
10,240 KB
testcase_20 AC 251 ms
6,784 KB
testcase_21 AC 244 ms
7,424 KB
testcase_22 AC 391 ms
8,960 KB
testcase_23 AC 182 ms
6,272 KB
testcase_24 AC 367 ms
8,320 KB
testcase_25 AC 255 ms
7,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |                 scanf("%lld %lld %lld",&K[i],&L[i],&D[i]);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

int main(){
	
	int N;
	cin>>N;
	
	vector<long long> K(N),L(N),D(N);
	rep(i,N){
		scanf("%lld %lld %lld",&K[i],&L[i],&D[i]);
	}
	
	long long ok = 1000000000000000000,ng = -1;
	
	while(ok-ng>1){
		long long mid = (ok+ng)/2;
		
		int sum = 0;
		
		rep(i,N){
			long long x = (1LL<<D[i]);
			long long ok1 = 0,ng1 = K[i]+1;
			while(ng1-ok1>1){
				long long mid1 = (ok1+ng1)/2;
				if(L[i] + x * (mid1-1)<=mid)ok1 = mid1;
				else ng1 = mid1;
			}
			sum ^= ok1&1;
		}
		
		if(sum)ok = mid;
		else ng = mid;
		
	}
	
	cout<<ok<<endl;
	
	return 0;
}
0