結果
問題 |
No.2969 ローラン単項式の微分
|
ユーザー |
|
提出日時 | 2024-11-29 21:22:00 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 148 bytes |
コンパイル時間 | 1,432 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 53,476 KB |
最終ジャッジ日時 | 2024-11-29 21:22:04 |
合計ジャッジ時間 | 1,885 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 WA * 4 |
ソースコード
import sys input = sys.stdin.readline N, M = map(int, input().split()) if M==0: print("No") exit() n = N*M m = M-1 print("Yes") print(n, m)