結果

問題 No.857 素振り
ユーザー tonyu0tonyu0
提出日時 2020-05-01 09:38:54
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 371 ms / 1,000 ms
コード長 127 bytes
コンパイル時間 2,528 ms
コンパイル使用メモリ 145,952 KB
実行使用メモリ 136,920 KB
最終ジャッジ日時 2024-06-06 00:32:03
合計ジャッジ時間 7,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
136,668 KB
testcase_01 AC 365 ms
136,536 KB
testcase_02 AC 370 ms
136,540 KB
testcase_03 AC 371 ms
136,920 KB
testcase_04 AC 370 ms
136,792 KB
testcase_05 AC 368 ms
136,668 KB
testcase_06 AC 366 ms
136,540 KB
testcase_07 AC 370 ms
136,540 KB
testcase_08 AC 363 ms
135,904 KB
testcase_09 AC 366 ms
136,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my ($x, $y, $z) = get.chomp.split(" ");
my $ans = $z;
if $x <= $z {
    $ans--;
}
if $y <= $z {
    $ans--;
}
"%d".printf($ans)
0