結果

問題 No.2969 ローラン単項式の微分
ユーザー hiro1729hiro1729
提出日時 2023-09-13 14:51:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 97 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-08-31 10:54:01
合計ジャッジ時間 1,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,616 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
52,680 KB
testcase_03 AC 37 ms
51,940 KB
testcase_04 AC 36 ms
51,928 KB
testcase_05 AC 35 ms
52,068 KB
testcase_06 AC 36 ms
52,284 KB
testcase_07 AC 36 ms
52,084 KB
testcase_08 AC 41 ms
52,872 KB
testcase_09 AC 36 ms
53,420 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 39 ms
52,672 KB
testcase_15 AC 36 ms
53,284 KB
testcase_16 AC 36 ms
52,416 KB
testcase_17 AC 37 ms
52,420 KB
testcase_18 AC 37 ms
52,948 KB
testcase_19 AC 36 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
if M == 0:
	print("No")
else:
	print("Yes")
	print(N * M, M - 1)
0