結果

問題 No.857 素振り
ユーザー tonyu0tonyu0
提出日時 2020-05-01 09:33:11
言語 Raku
(rakudo v2024.02)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 122,776 KB
実行使用メモリ 136,380 KB
最終ジャッジ日時 2023-08-24 23:29:50
合計ジャッジ時間 5,626 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
136,156 KB
testcase_01 AC 404 ms
136,260 KB
testcase_02 AC 406 ms
136,128 KB
testcase_03 AC 408 ms
136,276 KB
testcase_04 AC 406 ms
136,136 KB
testcase_05 AC 407 ms
136,380 KB
testcase_06 AC 409 ms
136,288 KB
testcase_07 AC 408 ms
136,116 KB
testcase_08 AC 406 ms
136,328 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