結果

問題 No.365 ジェンガソート
ユーザー LeonardoneLeonardone
提出日時 2016-05-01 00:58:50
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 135,936 KB
実行使用メモリ 159,208 KB
最終ジャッジ日時 2024-11-24 13:25:09
合計ジャッジ時間 19,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 369 ms
138,148 KB
testcase_01 AC 359 ms
138,148 KB
testcase_02 AC 364 ms
138,148 KB
testcase_03 AC 366 ms
138,016 KB
testcase_04 AC 359 ms
138,020 KB
testcase_05 AC 361 ms
138,144 KB
testcase_06 AC 364 ms
138,144 KB
testcase_07 AC 360 ms
137,888 KB
testcase_08 AC 367 ms
138,148 KB
testcase_09 AC 360 ms
137,888 KB
testcase_10 AC 361 ms
137,892 KB
testcase_11 AC 359 ms
138,148 KB
testcase_12 AC 369 ms
137,888 KB
testcase_13 AC 362 ms
138,276 KB
testcase_14 AC 363 ms
137,892 KB
testcase_15 AC 365 ms
138,016 KB
testcase_16 AC 486 ms
154,040 KB
testcase_17 AC 517 ms
156,740 KB
testcase_18 AC 389 ms
141,588 KB
testcase_19 AC 526 ms
156,848 KB
testcase_20 AC 427 ms
145,100 KB
testcase_21 AC 417 ms
143,892 KB
testcase_22 AC 486 ms
153,608 KB
testcase_23 AC 450 ms
146,936 KB
testcase_24 AC 483 ms
153,240 KB
testcase_25 AC 417 ms
144,016 KB
testcase_26 AC 468 ms
149,784 KB
testcase_27 AC 529 ms
158,696 KB
testcase_28 AC 462 ms
149,776 KB
testcase_29 AC 506 ms
156,360 KB
testcase_30 AC 468 ms
150,080 KB
testcase_31 AC 415 ms
144,276 KB
testcase_32 AC 416 ms
143,888 KB
testcase_33 AC 513 ms
158,408 KB
testcase_34 AC 400 ms
143,632 KB
testcase_35 AC 492 ms
153,392 KB
testcase_36 AC 511 ms
158,820 KB
testcase_37 AC 518 ms
159,208 KB
testcase_38 AC 521 ms
158,568 KB
testcase_39 AC 581 ms
158,440 KB
testcase_40 AC 527 ms
158,612 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;
	if $v > $mx {
		$mx = $v;
	} elsif $ans < $v && $v < $mx {
		$ans = $v;
	}
}

say $ans;
0