結果

問題 No.46 はじめのn歩
ユーザー organ05organ05
提出日時 2016-05-14 01:05:01
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 50 bytes
コンパイル時間 1,565 ms
コンパイル使用メモリ 76,944 KB
実行使用メモリ 75,820 KB
最終ジャッジ日時 2024-04-15 18:43:14
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,540 KB
testcase_01 AC 77 ms
75,688 KB
testcase_02 AC 76 ms
75,656 KB
testcase_03 AC 77 ms
75,820 KB
testcase_04 AC 77 ms
75,316 KB
testcase_05 AC 77 ms
75,580 KB
testcase_06 AC 77 ms
75,656 KB
testcase_07 AC 77 ms
75,268 KB
testcase_08 AC 78 ms
75,660 KB
testcase_09 AC 76 ms
75,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,raw_input().split())
print (a+b-1)/a
0