結果

問題 No.388 階段 (1)
ユーザー hfffdde_ekurosuhfffdde_ekurosu
提出日時 2019-08-24 19:44:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 66 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 87,160 KB
実行使用メモリ 71,504 KB
最終ジャッジ日時 2023-08-04 16:02:10
合計ジャッジ時間 2,411 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,288 KB
testcase_01 AC 65 ms
71,504 KB
testcase_02 AC 64 ms
71,348 KB
testcase_03 AC 63 ms
71,196 KB
testcase_04 AC 67 ms
71,464 KB
testcase_05 AC 65 ms
71,448 KB
testcase_06 AC 65 ms
71,360 KB
testcase_07 AC 62 ms
71,340 KB
testcase_08 AC 64 ms
71,124 KB
testcase_09 AC 64 ms
71,304 KB
testcase_10 AC 63 ms
71,352 KB
testcase_11 AC 64 ms
71,432 KB
testcase_12 AC 64 ms
71,272 KB
testcase_13 AC 66 ms
71,228 KB
testcase_14 AC 66 ms
71,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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