結果

問題 No.2969 ローラン単項式の微分
ユーザー hiro1729hiro1729
提出日時 2024-08-21 21:16:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 53,440 KB
最終ジャッジ日時 2024-08-21 21:16:39
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,452 KB
testcase_01 AC 36 ms
52,152 KB
testcase_02 AC 35 ms
52,332 KB
testcase_03 AC 35 ms
52,240 KB
testcase_04 AC 35 ms
53,440 KB
testcase_05 AC 36 ms
52,028 KB
testcase_06 AC 34 ms
53,196 KB
testcase_07 AC 34 ms
52,444 KB
testcase_08 AC 35 ms
52,824 KB
testcase_09 AC 33 ms
52,084 KB
testcase_10 AC 33 ms
52,416 KB
testcase_11 AC 33 ms
52,180 KB
testcase_12 AC 35 ms
52,632 KB
testcase_13 AC 33 ms
52,648 KB
testcase_14 AC 36 ms
51,940 KB
testcase_15 AC 36 ms
52,572 KB
testcase_16 AC 31 ms
52,772 KB
testcase_17 AC 32 ms
51,832 KB
testcase_18 AC 35 ms
53,028 KB
testcase_19 AC 33 ms
51,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
assert(-10 ** 9 <= N <= 10 ** 9)
assert(-10 ** 9 <= M <= 10 ** 9)

if N == 0 or M == 0:
	print("No")
else:
	print("Yes")
	print(N * M, M - 1)
0