結果
| 問題 |
No.388 階段 (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-21 00:05:20 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 119 bytes |
| コンパイル時間 | 142 ms |
| コンパイル使用メモリ | 82,652 KB |
| 実行使用メモリ | 67,276 KB |
| 最終ジャッジ日時 | 2024-12-15 21:45:39 |
| 合計ジャッジ時間 | 1,537 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 2 |
| other | AC * 4 RE * 8 |
ソースコード
import math
s,f = map(int,input().split())
if s % f == 0:
ans = s//f+1
else:
ans(math.ceil(s/f))
print(ans)