結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,812 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 65 ms
6,944 KB
testcase_13 AC 60 ms
6,940 KB
testcase_14 AC 61 ms
6,944 KB
testcase_15 AC 123 ms
6,940 KB
testcase_16 AC 115 ms
6,940 KB
testcase_17 AC 118 ms
6,940 KB
testcase_18 AC 175 ms
6,944 KB
testcase_19 AC 177 ms
6,940 KB
testcase_20 AC 175 ms
6,940 KB
testcase_21 AC 173 ms
6,944 KB
testcase_22 AC 3 ms
6,940 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