結果

問題 No.769 UNOシミュレータ
ユーザー tailstails
提出日時 2018-12-16 22:19:36
言語 Perl
(5.38.2)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-11-22 08:41:10
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 10 ms
5,248 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 10 ms
5,248 KB
testcase_12 AC 66 ms
5,376 KB
testcase_13 AC 65 ms
5,248 KB
testcase_14 AC 66 ms
5,376 KB
testcase_15 AC 128 ms
5,760 KB
testcase_16 AC 128 ms
5,632 KB
testcase_17 AC 128 ms
5,504 KB
testcase_18 AC 190 ms
6,016 KB
testcase_19 AC 190 ms
6,016 KB
testcase_20 AC 195 ms
6,016 KB
testcase_21 AC 191 ms
6,144 KB
testcase_22 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
$dir=1;
$id=0;
while(<>){
	chop;
	if($d2 && $_ ne 'drawtwo'){
		$a[$id]-=$d2;
		$d2=0;
		$id=($id+$dir)%$n;
	}
	if($d4 && $_ ne 'drawfour'){
		$a[$id]-=$d4;
		$d4=0;
		$id=($id+$dir)%$n;
	}
	$a[$id]+=1;
	$lastid=$id;
	if($_ eq 'number'){
	}
	if($_ eq 'drawtwo'){
		$d2+=2;
	}
	if($_ eq 'drawfour'){
		$d4+=4;
	}
	if($_ eq 'skip'){
		$id=($id+$dir)%$n;
	}
	if($_ eq 'reverse'){
		$dir=-$dir;
	}
	$id=($id+$dir)%$n;
}
print$lastid+1,$",$a[$lastid];
0