提出 #678451
ソースコード 拡げる
Copy
#include <bits/stdc++.h>
using namespace std;
typedef ostringstream OSS; typedef istringstream ISS;
typedef long long LL;
typedef pair<int, int> PII; typedef pair<LL, LL> PLL;
typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<VVI> VVVI;
typedef vector<LL> VLL; typedef vector<VLL> VVLL; typedef vector<VVLL> VVVLL;
typedef vector<double> VD; typedef vector<VD> VVD; typedef vector<VVD> VVVD;
typedef vector<string> VS; typedef vector<VS> VVS; typedef vector<VVS> VVVS;
typedef vector<bool> VB; typedef vector<VB> VVB; typedef vector<VVB> VVVB;
typedef vector<PII> VPII; typedef vector<VPII> VVPII; typedef vector<VVPII> VVVPII;
typedef vector<PLL> VPLL; typedef vector<VPLL> VVPLL; typedef vector<VVPLL> VVVPLL;
#define fst first
#define snd second
// #define Y first
// #define X second
#define MP make_pair
#define PB push_back
#define EB emplace_back
#define ALL(x) (x).begin(),(x).end()
#define RALL(x) (x).rbegin(),(x).rend()
#define RANGEBOX(x,y,maxX,maxY) (0 <= (x) && 0 <= (y) && (x) < (maxX) && (y) < (maxY))
#define RANGE(x, l, r) ((l) <= (x) && (x) <= (r))
#define rep(i, N) for (int i = 0; i < (int)(N); i++)
#define rrep(i, N) for (int i = N - 1; i >= 0; i--)
#define REP(i, init, N) for (int i = (init); i < (int)(N); i++)
#define RREP(i, N, last) for (int i = (init - 1); i >= last; i--)
#define MAXUD(orig, target) orig = max(orig, target)
#define MINUD(orig, target) orig = min(orig, target)
#define DUMP( x ) cerr << #x << " = " << ( x ) << endl
template < typename T > inline T fromString(const string &s) { T res; ISS iss(s); iss >> res; return res; };
template < typename T > inline string toString(const T &a) { OSS oss; oss << a; return oss.str(); };
const int INF = 0x3f3f3f3f;
const LL INFL = 0x3f3f3f3f3f3f3f3fLL;
const double DINF = 0x3f3f3f3f;
const int DX[] = {1, 0, -1, 0};
const int DY[] = {0, -1, 0, 1};
const double EPS = 1e-12;
// const double PI = acos(-1.0);
// lambda: [](T1 x)->T2{return y;}
// simple lambda: [](T x){return x;}
const VS dirs({"N","NNE","NE","ENE","E","ESE","SE","SSE","S","SSW","SW","WSW ","W","WNW ","NW ","NNW", "N"});
const VI degs({0, 1125, 3375, 5625, 7875, 10125, 12375, 14625, 16875, 19125, 21375, 23625, 25875, 28125, 30375, 32625, 34875});
const VI wings({0, 3, 16, 34, 55, 80, 108, 139, 172, 208, 245, 285, 327});
int main(void) {
int deg, dis;
cin >> deg >> dis;
string dir = dirs[lower_bound(ALL(degs), deg * 10 + 1) - degs.begin() - 1];
int w = lower_bound(ALL(wings), round(dis / 6.) + 1) - wings.begin() - 1;
cout << (w ? dir : "C") << " " << w << endl;
return 0;
}
提出情報
提出日時 |
|
問題 |
C - 風力観測 |
ユーザ |
snakazawa |
言語 |
C++11 (GCC 4.8.1) |
得点 |
0 |
コード長 |
2726 Byte |
結果 |
WA |
実行時間 |
56 ms |
メモリ |
1068 KB |
ジャッジ結果
セット名 |
all |
得点 / 配点 |
0 / 100 |
結果 |
|
セット名 |
テストケース |
all |
00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, 00_sample_05.txt, 00_sample_06.txt, 00_sample_07.txt, 00_sample_08.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt, test_44.txt, test_45.txt, test_46.txt, test_47.txt, test_48.txt, test_49.txt, test_50.txt, test_51.txt, test_52.txt, test_53.txt, test_54.txt, test_55.txt, test_56.txt, test_57.txt, test_58.txt |
ケース名 |
結果 |
実行時間 |
メモリ |
00_sample_01.txt |
AC |
28 ms |
928 KB |
00_sample_02.txt |
AC |
25 ms |
928 KB |
00_sample_03.txt |
AC |
26 ms |
864 KB |
00_sample_04.txt |
AC |
27 ms |
928 KB |
00_sample_05.txt |
AC |
25 ms |
928 KB |
00_sample_06.txt |
WA |
27 ms |
880 KB |
00_sample_07.txt |
AC |
56 ms |
916 KB |
00_sample_08.txt |
AC |
29 ms |
1016 KB |
test_01.txt |
AC |
43 ms |
924 KB |
test_02.txt |
AC |
42 ms |
932 KB |
test_03.txt |
AC |
30 ms |
1068 KB |
test_04.txt |
AC |
31 ms |
924 KB |
test_05.txt |
AC |
28 ms |
872 KB |
test_06.txt |
WA |
28 ms |
872 KB |
test_07.txt |
WA |
28 ms |
868 KB |
test_08.txt |
WA |
27 ms |
872 KB |
test_09.txt |
AC |
27 ms |
924 KB |
test_10.txt |
WA |
27 ms |
928 KB |
test_11.txt |
AC |
26 ms |
864 KB |
test_12.txt |
AC |
27 ms |
880 KB |
test_13.txt |
AC |
27 ms |
876 KB |
test_14.txt |
AC |
25 ms |
872 KB |
test_15.txt |
AC |
27 ms |
928 KB |
test_16.txt |
AC |
27 ms |
872 KB |
test_17.txt |
AC |
27 ms |
872 KB |
test_18.txt |
AC |
26 ms |
880 KB |
test_19.txt |
WA |
27 ms |
868 KB |
test_20.txt |
AC |
27 ms |
924 KB |
test_21.txt |
AC |
26 ms |
880 KB |
test_22.txt |
AC |
27 ms |
868 KB |
test_23.txt |
AC |
27 ms |
924 KB |
test_24.txt |
WA |
27 ms |
928 KB |
test_25.txt |
AC |
27 ms |
876 KB |
test_26.txt |
AC |
27 ms |
876 KB |
test_27.txt |
AC |
27 ms |
928 KB |
test_28.txt |
AC |
27 ms |
872 KB |
test_29.txt |
AC |
27 ms |
924 KB |
test_30.txt |
AC |
28 ms |
876 KB |
test_31.txt |
AC |
27 ms |
872 KB |
test_32.txt |
AC |
27 ms |
864 KB |
test_33.txt |
AC |
25 ms |
928 KB |
test_34.txt |
AC |
27 ms |
928 KB |
test_35.txt |
AC |
27 ms |
880 KB |
test_36.txt |
AC |
27 ms |
928 KB |
test_37.txt |
AC |
25 ms |
868 KB |
test_38.txt |
WA |
27 ms |
880 KB |
test_39.txt |
AC |
25 ms |
924 KB |
test_40.txt |
WA |
27 ms |
928 KB |
test_41.txt |
WA |
26 ms |
924 KB |
test_42.txt |
AC |
26 ms |
880 KB |
test_43.txt |
AC |
26 ms |
928 KB |
test_44.txt |
AC |
24 ms |
928 KB |
test_45.txt |
AC |
28 ms |
1004 KB |
test_46.txt |
AC |
27 ms |
880 KB |
test_47.txt |
AC |
27 ms |
920 KB |
test_48.txt |
AC |
26 ms |
1004 KB |
test_49.txt |
AC |
26 ms |
864 KB |
test_50.txt |
AC |
27 ms |
876 KB |
test_51.txt |
AC |
27 ms |
872 KB |
test_52.txt |
AC |
27 ms |
924 KB |
test_53.txt |
WA |
27 ms |
876 KB |
test_54.txt |
AC |
27 ms |
840 KB |
test_55.txt |
WA |
27 ms |
868 KB |
test_56.txt |
WA |
30 ms |
924 KB |
test_57.txt |
AC |
28 ms |
924 KB |
test_58.txt |
AC |
26 ms |
928 KB |