結果

問題 No.1183 コイン遊び
ユーザー kotatsugamekotatsugame
提出日時 2020-08-22 15:09:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 64,884 KB
実行使用メモリ 7,532 KB
最終ジャッジ日時 2024-10-15 09:27:04
合計ジャッジ時間 9,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 20 ms
5,248 KB
testcase_12 AC 200 ms
5,888 KB
testcase_13 AC 177 ms
5,504 KB
testcase_14 AC 294 ms
7,168 KB
testcase_15 AC 312 ms
7,424 KB
testcase_16 AC 315 ms
7,384 KB
testcase_17 AC 312 ms
7,388 KB
testcase_18 AC 317 ms
7,364 KB
testcase_19 AC 314 ms
7,456 KB
testcase_20 AC 314 ms
7,332 KB
testcase_21 AC 296 ms
7,296 KB
testcase_22 AC 297 ms
7,336 KB
testcase_23 AC 310 ms
7,364 KB
testcase_24 AC 308 ms
7,532 KB
testcase_25 AC 315 ms
7,392 KB
testcase_26 AC 320 ms
7,424 KB
testcase_27 AC 314 ms
7,508 KB
testcase_28 AC 314 ms
7,380 KB
testcase_29 AC 298 ms
7,416 KB
testcase_30 AC 303 ms
7,416 KB
testcase_31 AC 313 ms
7,424 KB
testcase_32 AC 315 ms
7,368 KB
testcase_33 AC 315 ms
7,380 KB
testcase_34 AC 314 ms
7,424 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,A[1<<20];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	for(int i=0;i<N;i++)
	{
		int B;cin>>B;
		A[i]^=B;
	}
	int ans=0;
	for(int i=0;i<N;i++)
	{
		if(A[i])
		{
			while(i<N&&A[i])i++;
			i--;
			ans++;
		}
	}
	cout<<ans<<endl;
}
0