結果
問題 |
No.306 さいたま2008
|
ユーザー |
![]() |
提出日時 | 2017-08-10 12:35:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 288 bytes |
コンパイル時間 | 1,546 ms |
コンパイル使用メモリ | 165,072 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 03:57:15 |
合計ジャッジ時間 | 2,311 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 WA * 2 |
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 6 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> typedef long long ll; using namespace std; int INF = 1e9; int MOD = 1e9+7; main(){ int xa,ya,xb,yb; cin >> xa >> ya >> xb >> yb; if(xa==xb && ya==yb){ cout << ya << endl; return 0; } cout << yb - 1.*(yb-ya)/(xb+xa)*xb << endl; }