結果

問題 No.814 ジジ抜き
ユーザー kotatsugamekotatsugame
提出日時 2020-03-27 04:35:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 3,000 ms
コード長 268 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 64,824 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 15:55:43
合計ジャッジ時間 6,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 267 ms
6,944 KB
testcase_05 AC 280 ms
6,940 KB
testcase_06 AC 270 ms
6,940 KB
testcase_07 AC 135 ms
6,944 KB
testcase_08 AC 262 ms
6,940 KB
testcase_09 AC 193 ms
6,940 KB
testcase_10 AC 257 ms
6,940 KB
testcase_11 AC 270 ms
6,944 KB
testcase_12 AC 138 ms
6,944 KB
testcase_13 AC 143 ms
6,940 KB
testcase_14 AC 204 ms
6,940 KB
testcase_15 AC 105 ms
6,944 KB
testcase_16 AC 101 ms
6,940 KB
testcase_17 AC 217 ms
6,944 KB
testcase_18 AC 182 ms
6,944 KB
testcase_19 AC 256 ms
6,940 KB
testcase_20 AC 134 ms
6,940 KB
testcase_21 AC 154 ms
6,944 KB
testcase_22 AC 224 ms
6,940 KB
testcase_23 AC 109 ms
6,940 KB
testcase_24 AC 193 ms
6,944 KB
testcase_25 AC 157 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N;
main()
{
	cin>>N;
	long ans=0;
	for(int i=0;i<N;i++)
	{
		long K,L,D;
		cin>>K>>L>>D;
		long L2=L>>D;
		while(K>0&&L2%4)
		{
			ans^=L;
			L+=1<<D;
			L2++;
			K--;
		}
		while(K%4)ans^=L+(--K<<D);
	}
	cout<<ans<<endl;
}
0