結果

問題 No.485 方程式のお勉強
ユーザー yukicoder_test
提出日時 2017-03-23 08:22:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 220 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-05 20:22:52
合計ジャッジ時間 1,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

# python 9rou.py
# -*- coding: utf-8 -*-
import sys, io
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')

A = int(input('A:'))
B = int(input('B:'))

if (B%A) == 0:
    print(B//A)
else:
    print("NO")
0