結果

問題 No.485 方程式のお勉強
ユーザー DexctersuDexctersu
提出日時 2017-03-19 21:30:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 8,000 KB
最終ジャッジ日時 2023-09-18 07:30:53
合計ジャッジ時間 1,121 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

first=input()
split_first=first.split()
A=int(split_first[0])
B=int(split_first[1])
x=int(B//A)

if isinstance(x,int):
    print(x)
else:
    print('NO')
0