結果

問題 No.445 得点
ユーザー Ichimiya
提出日時 2020-07-14 01:08:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 166,976 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 05:53:57
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define PI 3.14159265359
using namespace std;

int main() {
	int A, B;
	cin >> A >> B;

	int n = 50 * A;
	double m = 0.2 * B + 0.8;
	int ans = (int)n / m;
	ans += n;
	
	cout << ans << endl;
}
0