結果

問題 No.485 方程式のお勉強
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-06 05:10:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 78 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 86,964 KB
実行使用メモリ 71,648 KB
最終ジャッジ日時 2023-09-27 06:04:18
合計ジャッジ時間 2,869 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,536 KB
testcase_01 AC 64 ms
71,464 KB
testcase_02 AC 65 ms
71,552 KB
testcase_03 AC 64 ms
71,188 KB
testcase_04 AC 65 ms
71,172 KB
testcase_05 AC 65 ms
71,284 KB
testcase_06 AC 65 ms
71,432 KB
testcase_07 AC 64 ms
71,448 KB
testcase_08 AC 62 ms
71,648 KB
testcase_09 AC 62 ms
71,572 KB
testcase_10 AC 62 ms
71,232 KB
testcase_11 AC 62 ms
71,548 KB
testcase_12 AC 63 ms
71,212 KB
testcase_13 AC 63 ms
71,392 KB
testcase_14 AC 62 ms
71,408 KB
testcase_15 AC 63 ms
71,544 KB
testcase_16 AC 63 ms
71,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())

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