結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
143,588 KB
testcase_01 AC 322 ms
143,076 KB
testcase_02 AC 322 ms
143,464 KB
testcase_03 AC 320 ms
143,208 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 324 ms
143,208 KB
testcase_08 AC 332 ms
143,464 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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