結果

問題 No.91 赤、緑、青の石
ユーザー %20%20
提出日時 2018-06-01 15:33:23
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-06-30 08:51:32
合計ジャッジ時間 12,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 796 ms
5,888 KB
testcase_01 WA -
testcase_02 AC 982 ms
5,888 KB
testcase_03 AC 654 ms
5,888 KB
testcase_04 AC 1,055 ms
5,888 KB
testcase_05 AC 596 ms
5,760 KB
testcase_06 WA -
testcase_07 AC 7 ms
5,888 KB
testcase_08 WA -
testcase_09 AC 7 ms
5,888 KB
testcase_10 AC 7 ms
5,760 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 878 ms
5,760 KB
testcase_16 AC 7 ms
5,888 KB
testcase_17 AC 7 ms
6,016 KB
testcase_18 AC 7 ms
6,016 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 7 ms
6,016 KB
testcase_24 AC 7 ms
5,888 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,511 ms
6,016 KB
testcase_28 WA -
testcase_29 AC 548 ms
5,888 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($a,$b,$c)=glob<>;
while(1){
	if($a>=1&&$b>=1&&$c>=1){
		++$x;
		--$a;
		--$b;
		--$c
	}elsif($b<=$c){
		if($b>=1&&$c>=3){
			++$x;
			--$b;
			$c-=3
		}else{
			last
		}
	}else{
		if($b>=3&&$c>=1){
			++$x;
			--$c;
			$b-=3
		}else{
			last
		}
	}
}
print$x+($b/5|0)+($c/5|0)
0