結果

問題 No.814 ジジ抜き
ユーザー kotatsugamekotatsugame
提出日時 2020-03-27 04:35:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 338 ms / 3,000 ms
コード長 268 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 61,916 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-02 08:01:27
合計ジャッジ時間 7,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 5 ms
6,820 KB
testcase_04 AC 313 ms
6,820 KB
testcase_05 AC 319 ms
6,816 KB
testcase_06 AC 316 ms
6,820 KB
testcase_07 AC 159 ms
6,816 KB
testcase_08 AC 306 ms
6,816 KB
testcase_09 AC 223 ms
6,816 KB
testcase_10 AC 307 ms
6,816 KB
testcase_11 AC 302 ms
6,816 KB
testcase_12 AC 157 ms
6,820 KB
testcase_13 AC 155 ms
6,820 KB
testcase_14 AC 235 ms
6,816 KB
testcase_15 AC 123 ms
6,816 KB
testcase_16 AC 126 ms
6,816 KB
testcase_17 AC 244 ms
6,816 KB
testcase_18 AC 214 ms
6,816 KB
testcase_19 AC 338 ms
6,820 KB
testcase_20 AC 156 ms
6,816 KB
testcase_21 AC 176 ms
6,820 KB
testcase_22 AC 258 ms
6,820 KB
testcase_23 AC 132 ms
6,816 KB
testcase_24 AC 223 ms
6,816 KB
testcase_25 AC 183 ms
6,820 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