結果

問題 No.857 素振り
ユーザー tonyu0tonyu0
提出日時 2020-05-01 09:32:27
言語 Raku
(rakudo v2024.02)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 123,136 KB
実行使用メモリ 134,616 KB
最終ジャッジ日時 2023-08-24 23:28:31
合計ジャッジ時間 7,593 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
134,608 KB
testcase_01 AC 377 ms
134,248 KB
testcase_02 AC 378 ms
134,616 KB
testcase_03 AC 373 ms
134,500 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 376 ms
134,232 KB
testcase_08 AC 374 ms
134,108 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