結果

問題 No.610 区間賞(Section Award)
ユーザー tailstails
提出日時 2017-12-10 00:11:36
言語 Perl
(5.38.2)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 45,324 KB
最終ジャッジ日時 2024-11-30 05:44:55
合計ジャッジ時間 11,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 7 ms
6,820 KB
testcase_02 AC 8 ms
6,816 KB
testcase_03 AC 7 ms
6,820 KB
testcase_04 AC 7 ms
6,816 KB
testcase_05 AC 8 ms
6,816 KB
testcase_06 AC 11 ms
6,820 KB
testcase_07 AC 8 ms
6,820 KB
testcase_08 AC 11 ms
6,820 KB
testcase_09 AC 9 ms
6,820 KB
testcase_10 AC 10 ms
6,820 KB
testcase_11 AC 10 ms
6,816 KB
testcase_12 AC 8 ms
6,820 KB
testcase_13 AC 11 ms
6,820 KB
testcase_14 AC 11 ms
6,816 KB
testcase_15 AC 10 ms
6,816 KB
testcase_16 AC 10 ms
6,820 KB
testcase_17 AC 10 ms
6,820 KB
testcase_18 AC 9 ms
6,816 KB
testcase_19 AC 106 ms
13,092 KB
testcase_20 AC 459 ms
41,036 KB
testcase_21 AC 62 ms
10,624 KB
testcase_22 AC 270 ms
29,256 KB
testcase_23 AC 40 ms
8,832 KB
testcase_24 AC 102 ms
14,412 KB
testcase_25 AC 29 ms
7,808 KB
testcase_26 AC 187 ms
21,876 KB
testcase_27 AC 393 ms
40,476 KB
testcase_28 AC 357 ms
36,428 KB
testcase_29 AC 253 ms
27,848 KB
testcase_30 AC 325 ms
34,336 KB
testcase_31 AC 170 ms
20,432 KB
testcase_32 AC 376 ms
38,332 KB
testcase_33 AC 59 ms
10,624 KB
testcase_34 AC 398 ms
40,884 KB
testcase_35 AC 191 ms
22,228 KB
testcase_36 AC 379 ms
39,408 KB
testcase_37 AC 321 ms
33,816 KB
testcase_38 AC 92 ms
13,516 KB
testcase_39 AC 413 ms
41,568 KB
testcase_40 AC 410 ms
41,580 KB
testcase_41 AC 411 ms
41,708 KB
testcase_42 AC 408 ms
41,704 KB
testcase_43 AC 421 ms
41,704 KB
testcase_44 AC 428 ms
38,408 KB
testcase_45 AC 528 ms
44,844 KB
testcase_46 AC 538 ms
45,324 KB
testcase_47 AC 354 ms
35,548 KB
testcase_48 AC 315 ms
33,240 KB
testcase_49 AC 342 ms
36,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::i" used only once: possible typo at Main.pl line 4.
Main.pl syntax OK

ソースコード

diff #

<>;
@a=glob<>;
@b=glob<>;
$r[$_]=++$i for@a;
for(@b){
	if($c<$r[$_]){
		push@o,$_;
		$c=$r[$_];
	}
}
print join$/,sort{$a-$b}@o
0