結果
| 問題 | No.538 N.G.S. |
| コンテスト | |
| ユーザー |
Bantako
|
| 提出日時 | 2017-07-15 19:18:25 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 181 bytes |
| 記録 | |
| コンパイル時間 | 185 ms |
| コンパイル使用メモリ | 46,848 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-24 11:14:01 |
| 合計ジャッジ時間 | 1,776 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 41 WA * 10 |
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
3 | main(){
| ^~~~
ソースコード
#include<stdio.h>
#include<math.h>
main(){
double a,b,c;
scanf("%lf%lf%lf",&a,&b,&c);
double r = (b-c)/(a-b);
double d = (c-b*r);
printf("%d\n",lround(c*r+d));
}
Bantako