結果

問題 No.46 はじめのn歩
ユーザー j12811j12811
提出日時 2018-09-22 07:48:47
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 10,628 KB
実行使用メモリ 8,028 KB
最終ジャッジ日時 2023-09-25 10:55:43
合計ジャッジ時間 937 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 16 ms
7,860 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 15 ms
7,876 KB
testcase_08 WA -
testcase_09 AC 16 ms
7,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

#input
s = input()
ss = s.split()
a = float(ss[0])
b = 5#int(ss[1])
r = math.ceil(b/a)
r = int(r)
print(r)
0