結果

問題 No.91 赤、緑、青の石
ユーザー %20%20
提出日時 2018-06-01 15:31:10
言語 Perl
(5.38.2)
結果
AC  
実行時間 806 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-06-24 07:14:54
合計ジャッジ時間 8,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
6,016 KB
testcase_01 AC 345 ms
6,016 KB
testcase_02 AC 211 ms
6,016 KB
testcase_03 AC 400 ms
6,144 KB
testcase_04 AC 195 ms
6,016 KB
testcase_05 AC 465 ms
6,016 KB
testcase_06 AC 52 ms
6,016 KB
testcase_07 AC 8 ms
6,016 KB
testcase_08 AC 7 ms
6,016 KB
testcase_09 AC 8 ms
5,888 KB
testcase_10 AC 7 ms
6,016 KB
testcase_11 AC 136 ms
6,016 KB
testcase_12 AC 427 ms
5,888 KB
testcase_13 AC 486 ms
6,144 KB
testcase_14 AC 311 ms
6,016 KB
testcase_15 AC 508 ms
6,144 KB
testcase_16 AC 7 ms
6,016 KB
testcase_17 AC 7 ms
6,016 KB
testcase_18 AC 7 ms
6,016 KB
testcase_19 AC 7 ms
6,144 KB
testcase_20 AC 8 ms
6,016 KB
testcase_21 AC 7 ms
6,016 KB
testcase_22 AC 7 ms
6,016 KB
testcase_23 AC 8 ms
6,016 KB
testcase_24 AC 7 ms
6,016 KB
testcase_25 AC 806 ms
5,888 KB
testcase_26 AC 756 ms
6,144 KB
testcase_27 AC 7 ms
5,888 KB
testcase_28 AC 7 ms
6,016 KB
testcase_29 AC 14 ms
6,016 KB
testcase_30 AC 498 ms
6,144 KB
testcase_31 AC 709 ms
6,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($x,$b,$c)=sort{$a-$b}glob<>;
$b-=$x;
$c-=$x;
while(1){
	if($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