結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 156 ms
6,940 KB
testcase_07 AC 116 ms
13,024 KB
testcase_08 AC 239 ms
20,600 KB
testcase_09 AC 43 ms
8,704 KB
testcase_10 AC 339 ms
28,052 KB
testcase_11 AC 54 ms
7,040 KB
testcase_12 AC 367 ms
31,028 KB
testcase_13 AC 372 ms
31,040 KB
testcase_14 AC 381 ms
31,044 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 105 ms
12,032 KB
testcase_17 AC 31 ms
7,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::G" 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::R" used only once: possible typo at Main.pl line 11.
Name "main::k" used only once: possible typo at Main.pl line 1.
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