結果

問題 No.388 階段 (1)
ユーザー w0mbatw0mbat
提出日時 2020-03-15 16:10:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 48 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 53,052 KB
最終ジャッジ日時 2024-05-03 22:19:34
合計ジャッジ時間 1,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,052 KB
testcase_01 AC 35 ms
52,192 KB
testcase_02 AC 35 ms
52,016 KB
testcase_03 AC 37 ms
52,196 KB
testcase_04 AC 35 ms
52,656 KB
testcase_05 AC 33 ms
52,508 KB
testcase_06 AC 35 ms
52,072 KB
testcase_07 AC 36 ms
52,680 KB
testcase_08 AC 35 ms
52,000 KB
testcase_09 AC 36 ms
52,268 KB
testcase_10 AC 34 ms
52,616 KB
testcase_11 AC 34 ms
53,016 KB
testcase_12 AC 37 ms
52,092 KB
testcase_13 AC 34 ms
52,660 KB
testcase_14 AC 34 ms
51,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S, F = map(int, input().split())
print(S//F + 1)
0