結果

問題 No.388 階段 (1)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-19 20:46:09
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 59 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 122,836 KB
実行使用メモリ 134,436 KB
最終ジャッジ日時 2023-08-16 03:44:58
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
134,352 KB
testcase_01 AC 326 ms
134,176 KB
testcase_02 AC 332 ms
134,308 KB
testcase_03 AC 332 ms
134,128 KB
testcase_04 AC 326 ms
134,260 KB
testcase_05 AC 326 ms
134,204 KB
testcase_06 AC 330 ms
134,324 KB
testcase_07 AC 329 ms
134,188 KB
testcase_08 AC 330 ms
134,320 KB
testcase_09 AC 341 ms
134,232 KB
testcase_10 AC 332 ms
134,436 KB
testcase_11 AC 329 ms
134,416 KB
testcase_12 AC 325 ms
134,216 KB
testcase_13 AC 330 ms
134,300 KB
testcase_14 AC 326 ms
134,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my ($s, $f) = get().split(" ");

say ($s / $f).floor() + 1;
0