結果

問題 No.2969 ローラン単項式の微分
ユーザー KudeKude
提出日時 2024-11-29 22:43:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 121 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-11-29 22:43:32
合計ジャッジ時間 1,750 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,352 KB
testcase_01 AC 36 ms
53,020 KB
testcase_02 AC 37 ms
52,136 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,644 KB
testcase_06 AC 36 ms
52,188 KB
testcase_07 AC 36 ms
52,148 KB
testcase_08 AC 35 ms
51,876 KB
testcase_09 AC 35 ms
52,304 KB
testcase_10 AC 35 ms
52,760 KB
testcase_11 AC 35 ms
53,572 KB
testcase_12 AC 38 ms
51,684 KB
testcase_13 AC 37 ms
51,880 KB
testcase_14 AC 35 ms
52,076 KB
testcase_15 AC 36 ms
51,564 KB
testcase_16 AC 37 ms
52,500 KB
testcase_17 AC 35 ms
53,296 KB
testcase_18 AC 35 ms
52,760 KB
testcase_19 AC 35 ms
53,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
if n * m == 0 or m == -1:
    print('No')
else:
    print('Yes')
    print(n * m, m - 1)
0