結果
| 問題 |
No.445 得点
|
| コンテスト | |
| ユーザー |
iroha168
|
| 提出日時 | 2017-01-01 22:41:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 228 bytes |
| コンパイル時間 | 670 ms |
| コンパイル使用メモリ | 73,092 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-16 05:25:49 |
| 合計ジャッジ時間 | 1,253 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 WA * 4 |
ソースコード
#include<string>
#include<iostream>
#include<algorithm>
#include<set>
#include<math.h>
using namespace std;
int main() {
int n, k, r;
cin >> n >> k;
r = 50 * n + floor((50*n)/(0.8+0.2*k));
cout << r << endl;
return 0;
}
iroha168