結果

問題 No.2969 ローラン単項式の微分
ユーザー miho-4miho-4
提出日時 2024-11-29 21:55:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 53,156 KB
最終ジャッジ日時 2024-11-29 21:55:26
合計ジャッジ時間 1,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,156 KB
testcase_01 AC 35 ms
52,840 KB
testcase_02 AC 34 ms
52,236 KB
testcase_03 AC 36 ms
52,092 KB
testcase_04 AC 36 ms
51,444 KB
testcase_05 AC 35 ms
52,428 KB
testcase_06 AC 36 ms
51,996 KB
testcase_07 AC 35 ms
51,504 KB
testcase_08 AC 34 ms
51,812 KB
testcase_09 AC 33 ms
52,304 KB
testcase_10 AC 37 ms
51,376 KB
testcase_11 AC 33 ms
52,448 KB
testcase_12 AC 40 ms
51,572 KB
testcase_13 AC 35 ms
52,156 KB
testcase_14 AC 34 ms
52,452 KB
testcase_15 AC 32 ms
51,300 KB
testcase_16 AC 32 ms
51,620 KB
testcase_17 AC 32 ms
52,452 KB
testcase_18 AC 33 ms
52,572 KB
testcase_19 AC 33 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())

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