結果
問題 | No.445 得点 |
ユーザー |
|
提出日時 | 2016-11-18 22:24:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 767 bytes |
コンパイル時間 | 1,275 ms |
コンパイル使用メモリ | 165,732 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 20:12:32 |
合計ジャッジ時間 | 1,900 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS#define _USE_MATH_DEFINES#include "bits/stdc++.h"#define REP(i,a,b) for(int i=a;i<b;++i)#define rep(i,n) REP(i,0,n)typedef long long ll;typedef unsigned long long ull;typedef long double ld;#define ALL(a) begin(a),end(a)#define ifnot(a) if(not (a))#define dump(x) cerr << #x << " = " << (x) << endlusing namespace std;// #define int ll#ifdef _MSC_VERconst bool test = true;#elseconst bool test = false;#endifint dx[] = { 0,1,0,-1 };int dy[] = { 1,0,-1,0 };#define INF (1 << 28)ull mod = (int)1e9 + 7;//.....................const int MAX = (int)2e5 + 5;int A, B;auto f(int N, int K) -> int{return 50 * N + 50 * N * 10 / (8 + 2 * K);}int main() {cin >> A >> B;cout << f(A, B) << endl;return 0;}