結果

問題 No.365 ジェンガソート
ユーザー LeonardoneLeonardone
提出日時 2016-05-01 00:55:42
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 767 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 136,668 KB
実行使用メモリ 151,496 KB
最終ジャッジ日時 2024-11-24 13:24:35
合計ジャッジ時間 23,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
138,440 KB
testcase_01 AC 361 ms
138,568 KB
testcase_02 AC 364 ms
138,568 KB
testcase_03 AC 370 ms
138,180 KB
testcase_04 AC 370 ms
138,436 KB
testcase_05 AC 366 ms
138,312 KB
testcase_06 AC 366 ms
138,184 KB
testcase_07 AC 363 ms
138,180 KB
testcase_08 AC 367 ms
138,308 KB
testcase_09 AC 359 ms
138,184 KB
testcase_10 AC 368 ms
138,308 KB
testcase_11 AC 372 ms
138,436 KB
testcase_12 AC 363 ms
138,052 KB
testcase_13 AC 372 ms
138,180 KB
testcase_14 AC 364 ms
137,192 KB
testcase_15 AC 378 ms
138,308 KB
testcase_16 AC 683 ms
148,296 KB
testcase_17 AC 718 ms
150,472 KB
testcase_18 AC 433 ms
143,056 KB
testcase_19 AC 694 ms
150,088 KB
testcase_20 AC 502 ms
144,456 KB
testcase_21 AC 471 ms
144,196 KB
testcase_22 AC 636 ms
148,292 KB
testcase_23 AC 536 ms
144,452 KB
testcase_24 AC 634 ms
147,780 KB
testcase_25 AC 467 ms
143,944 KB
testcase_26 AC 576 ms
146,376 KB
testcase_27 AC 714 ms
151,108 KB
testcase_28 AC 592 ms
146,500 KB
testcase_29 AC 683 ms
149,576 KB
testcase_30 AC 590 ms
146,504 KB
testcase_31 AC 480 ms
145,096 KB
testcase_32 AC 478 ms
144,580 KB
testcase_33 AC 723 ms
150,596 KB
testcase_34 AC 458 ms
143,736 KB
testcase_35 AC 648 ms
147,908 KB
testcase_36 AC 744 ms
151,236 KB
testcase_37 AC 724 ms
151,364 KB
testcase_38 AC 717 ms
151,496 KB
testcase_39 AC 767 ms
151,108 KB
testcase_40 AC 722 ms
151,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/perl
# yukicoder My Practice
# author: Leonardone @ NEETSDKASU

my $n = $*IN.get;
my @a = $*IN.get.words.map({ .Int });
my $mx = 0;
my $ans = 0;

for @a {
	$mx = max($mx, $_);
	if $ans < $_ && $_ < $mx {
		$ans = $_;
	}
}

say $ans;
0