結果
問題 |
No.2400 Product of Gaussian Integer
|
ユーザー |
|
提出日時 | 2023-08-04 22:23:29 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 776 ms |
コンパイル使用メモリ | 65,776 KB |
最終ジャッジ日時 | 2025-02-15 22:56:43 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 7 WA * 6 |
ソースコード
#include <iostream> #include <string> int main() { int a, b, c, d; std::cin >> a >> b >> c >> d; std::cout << (a * c) - (b * d) << " " << (b * c) + (a * d) << std::endl; return 0; }