結果

問題 No.485 方程式のお勉強
ユーザー 👑 yumechiyumechi
提出日時 2017-02-24 23:22:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 87,096 KB
実行使用メモリ 71,728 KB
最終ジャッジ日時 2023-08-30 23:49:07
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,324 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 71 ms
71,728 KB
testcase_04 WA -
testcase_05 AC 71 ms
71,432 KB
testcase_06 AC 70 ms
71,492 KB
testcase_07 WA -
testcase_08 AC 71 ms
71,272 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 70 ms
71,364 KB
testcase_13 AC 69 ms
71,644 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 70 ms
71,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
b, a = map(int, input().split())
print("NO" if a / b != math.ceil(a / b) else a / b)
0