結果

問題 No.365 ジェンガソート
ユーザー LeonardoneLeonardone
提出日時 2016-05-01 00:56:47
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 765 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 135,704 KB
実行使用メモリ 159,296 KB
最終ジャッジ日時 2024-11-24 13:26:22
合計ジャッジ時間 23,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
138,228 KB
testcase_01 AC 355 ms
138,412 KB
testcase_02 AC 350 ms
138,496 KB
testcase_03 AC 360 ms
138,288 KB
testcase_04 AC 357 ms
138,364 KB
testcase_05 AC 355 ms
138,288 KB
testcase_06 AC 357 ms
138,156 KB
testcase_07 AC 352 ms
138,180 KB
testcase_08 AC 348 ms
138,032 KB
testcase_09 AC 362 ms
138,284 KB
testcase_10 AC 351 ms
138,496 KB
testcase_11 AC 362 ms
137,900 KB
testcase_12 AC 368 ms
137,924 KB
testcase_13 AC 360 ms
138,360 KB
testcase_14 AC 354 ms
138,536 KB
testcase_15 AC 361 ms
138,436 KB
testcase_16 AC 664 ms
154,140 KB
testcase_17 AC 765 ms
156,860 KB
testcase_18 AC 416 ms
142,404 KB
testcase_19 AC 725 ms
156,840 KB
testcase_20 AC 498 ms
144,204 KB
testcase_21 AC 475 ms
142,712 KB
testcase_22 AC 650 ms
153,712 KB
testcase_23 AC 551 ms
146,196 KB
testcase_24 AC 638 ms
152,420 KB
testcase_25 AC 476 ms
141,744 KB
testcase_26 AC 588 ms
149,876 KB
testcase_27 AC 744 ms
157,836 KB
testcase_28 AC 621 ms
149,404 KB
testcase_29 AC 701 ms
155,680 KB
testcase_30 AC 605 ms
149,348 KB
testcase_31 AC 480 ms
143,676 KB
testcase_32 AC 480 ms
143,384 KB
testcase_33 AC 736 ms
158,404 KB
testcase_34 AC 461 ms
143,380 KB
testcase_35 AC 645 ms
154,128 KB
testcase_36 AC 739 ms
158,528 KB
testcase_37 AC 753 ms
158,784 KB
testcase_38 AC 741 ms
159,296 KB
testcase_39 AC 759 ms
158,652 KB
testcase_40 AC 757 ms
158,460 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

my $n = $*IN.get;
my @a = $*IN.get.words;
my $mx = 0;
my $ans = 0;

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

say $ans;
0