結果
| 問題 | No.538 N.G.S. |
| コンテスト | |
| ユーザー |
Bantako
|
| 提出日時 | 2017-06-30 23:10:28 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 181 bytes |
| 記録 | |
| コンパイル時間 | 122 ms |
| コンパイル使用メモリ | 46,976 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-10 08:03:18 |
| 合計ジャッジ時間 | 2,521 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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