結果
問題 |
No.306 さいたま2008
|
ユーザー |
![]() |
提出日時 | 2016-02-04 10:49:38 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 55,904 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 20:16:09 |
合計ジャッジ時間 | 1,738 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 WA * 2 |
ソースコード
#include<iostream> int main(){ double ax, ay, bx, by; std::cin >> ax >> ay; std::cin >> bx >> by; std::cout << by - (by - ay) / (bx + ax) * bx << std::endl; return 0; }