結果

問題 No.769 UNOシミュレータ
ユーザー kotatsugamekotatsugame
提出日時 2019-01-27 14:44:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 472 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 64,128 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 00:25:34
合計ジャッジ時間 2,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 26 ms
5,376 KB
testcase_13 AC 28 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 51 ms
5,376 KB
testcase_16 AC 50 ms
5,376 KB
testcase_17 AC 51 ms
5,376 KB
testcase_18 AC 74 ms
5,376 KB
testcase_19 AC 77 ms
5,376 KB
testcase_20 AC 80 ms
5,376 KB
testcase_21 AC 75 ms
5,376 KB
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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,m,c[1<<17];
main()
{
	cin>>n>>m;
	int id=1,r=1,t=0,f=0;
	for(;m--;)
	{
		string s;cin>>s;
		if(t&&s!="drawtwo")
		{
			c[id]-=t*2;
			id+=r;
			t=0;
		}
		if(f&&s!="drawfour")
		{
			c[id]-=f*4;
			id+=r;
			f=0;
		}
		id=(id+n-1)%n+1;
		c[id]++;
		if(s=="number");
		else if(s=="skip")id+=r;
		else if(s=="drawtwo")t++;
		else if(s=="drawfour")f++;
		else r=-r;
		id+=r;
	}
	id=(id-r+n-1)%n+1;
	cout<<id<<" "<<c[id]<<endl;
}
0