結果

問題 No.2042 RGB Caps
ユーザー tailstails
提出日時 2022-08-19 21:57:53
言語 Perl
(5.38.2)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 31,044 KB
最終ジャッジ日時 2024-11-16 01:56:00
合計ジャッジ時間 3,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,820 KB
testcase_01 AC 6 ms
6,820 KB
testcase_02 AC 6 ms
6,816 KB
testcase_03 AC 7 ms
6,820 KB
testcase_04 AC 7 ms
6,820 KB
testcase_05 AC 6 ms
6,816 KB
testcase_06 AC 143 ms
6,820 KB
testcase_07 AC 115 ms
13,024 KB
testcase_08 AC 226 ms
20,600 KB
testcase_09 AC 44 ms
8,576 KB
testcase_10 AC 326 ms
28,044 KB
testcase_11 AC 52 ms
7,040 KB
testcase_12 AC 367 ms
30,916 KB
testcase_13 AC 373 ms
31,044 KB
testcase_14 AC 368 ms
30,916 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 105 ms
12,032 KB
testcase_17 AC 33 ms
7,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::k" used only once: possible typo at Main.pl line 1.
Name "main::R" used only once: possible typo at Main.pl line 11.
Name "main::B" used only once: possible typo at Main.pl line 11.
Name "main::G" used only once: possible typo at Main.pl line 11.
Main.pl syntax OK

ソースコード

diff #

($n,$k)=glob<>;
@a=sort{$a-$b}<>;
for(1..$n){
	$c=R;
	if($a[0]==$_){
		$_=shift@a;
		chop;
		$c=chop;
	}
	for(B,G,R,$c){
		if($$_<=$R&&$$_<=$G&&$$_<=$B){
			$d=$_;
		}
	}
	++$$d;
	print$d;
}
0