結果

問題 No.485 方程式のお勉強
ユーザー DexctersuDexctersu
提出日時 2019-03-17 14:36:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 83 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2023-09-20 19:59:04
合計ジャッジ時間 1,339 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 14 ms
7,776 KB
testcase_02 AC 15 ms
7,812 KB
testcase_03 WA -
testcase_04 AC 15 ms
7,904 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 14 ms
7,840 KB
testcase_08 WA -
testcase_09 AC 15 ms
7,860 KB
testcase_10 AC 15 ms
7,800 KB
testcase_11 AC 15 ms
7,904 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 14 ms
7,900 KB
testcase_15 AC 14 ms
7,952 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
if b%a==0:
    print(b//a)
else:
    print("No")
0