結果

問題 No.485 方程式のお勉強
ユーザー kjnho
提出日時 2017-02-24 22:23:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2025-01-02 22:36:40
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    A, B = map(int, input().split())
    amari = B%A
    if amari == 0:
        print(int(B/A))
    else:
        print("NO")
0