結果

問題 No.46 はじめのn歩
ユーザー MrEMGration
提出日時 2019-03-22 23:14:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 57 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 66,828 KB
最終ジャッジ日時 2024-09-19 06:35:43
合計ジャッジ時間 1,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b=map(int,input())
print(math.ceil((b/a)))
0