結果

問題 No.46 はじめのn歩
ユーザー nsore38088715nsore38088715
提出日時 2019-04-15 23:42:50
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 76,980 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-09-22 08:08:03
合計ジャッジ時間 1,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,552 KB
testcase_01 AC 78 ms
75,536 KB
testcase_02 AC 75 ms
75,272 KB
testcase_03 AC 73 ms
75,300 KB
testcase_04 AC 73 ms
75,408 KB
testcase_05 AC 72 ms
75,412 KB
testcase_06 AC 74 ms
75,292 KB
testcase_07 AC 73 ms
75,296 KB
testcase_08 AC 72 ms
75,648 KB
testcase_09 AC 72 ms
75,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = (int(i) for i in raw_input().split(' '))

tmp = b % a
if tmp > 0:
    tmp = b // a + 1
else:
    tmp = b // a

print tmp
0