結果

問題 No.857 素振り
ユーザー tonyu0tonyu0
提出日時 2020-05-01 09:33:11
言語 Raku
(rakudo v2024.02)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 145,420 KB
実行使用メモリ 147,020 KB
最終ジャッジ日時 2024-06-02 12:30:02
合計ジャッジ時間 4,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
141,760 KB
testcase_01 AC 333 ms
141,508 KB
testcase_02 AC 329 ms
141,760 KB
testcase_03 AC 322 ms
143,164 KB
testcase_04 AC 340 ms
142,168 KB
testcase_05 AC 345 ms
141,636 KB
testcase_06 AC 337 ms
141,636 KB
testcase_07 AC 332 ms
141,504 KB
testcase_08 AC 334 ms
143,336 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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