結果

問題 No.388 階段 (1)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-19 20:46:09
言語 Raku
(rakudo v2024.12)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 59 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 128,636 KB
実行使用メモリ 138,440 KB
最終ジャッジ日時 2024-11-24 13:24:47
合計ジャッジ時間 5,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
137,928 KB
testcase_01 AC 317 ms
138,180 KB
testcase_02 AC 317 ms
138,052 KB
testcase_03 AC 316 ms
138,324 KB
testcase_04 AC 320 ms
138,056 KB
testcase_05 AC 318 ms
138,280 KB
testcase_06 AC 317 ms
138,328 KB
testcase_07 AC 323 ms
138,312 KB
testcase_08 AC 322 ms
138,440 KB
testcase_09 AC 324 ms
138,052 KB
testcase_10 AC 327 ms
138,056 KB
testcase_11 AC 322 ms
137,924 KB
testcase_12 AC 321 ms
138,308 KB
testcase_13 AC 325 ms
138,308 KB
testcase_14 AC 320 ms
138,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

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