結果

問題 No.46 はじめのn歩
ユーザー Shinichiro OnzukaShinichiro Onzuka
提出日時 2020-04-10 18:21:36
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 89 bytes
コンパイル時間 1,313 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 75,820 KB
最終ジャッジ日時 2024-09-15 07:34:02
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 80 ms
75,540 KB
testcase_02 WA -
testcase_03 AC 76 ms
75,520 KB
testcase_04 AC 77 ms
75,572 KB
testcase_05 AC 76 ms
75,520 KB
testcase_06 WA -
testcase_07 AC 77 ms
75,264 KB
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, raw_input().split()) 

q, mod = divmod(b, a)

if (a != 0):q += 1

print q
0