結果

問題 No.46 はじめのn歩
ユーザー nsore38088715nsore38088715
提出日時 2019-04-15 23:42:50
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 76,052 KB
最終ジャッジ日時 2023-10-22 06:53:50
合計ジャッジ時間 1,536 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
76,052 KB
testcase_01 AC 74 ms
76,052 KB
testcase_02 AC 74 ms
76,052 KB
testcase_03 AC 73 ms
76,052 KB
testcase_04 AC 73 ms
76,052 KB
testcase_05 AC 73 ms
76,052 KB
testcase_06 AC 73 ms
76,052 KB
testcase_07 AC 73 ms
76,052 KB
testcase_08 AC 73 ms
76,052 KB
testcase_09 AC 73 ms
76,052 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