結果
問題 | No.1236 長針と短針 |
ユーザー | Takoyaki65 |
提出日時 | 2020-10-09 15:31:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,335 bytes |
コンパイル時間 | 915 ms |
コンパイル使用メモリ | 94,660 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-20 06:49:36 |
合計ジャッジ時間 | 1,786 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <algorithm> #include <cassert> #include <cmath> #include <cstring> #include <iomanip> #include <iostream> #include <iterator> #include <limits> #include <map> #include <queue> #include <set> #include <stack> #include <vector> #define repeat(i, n) for (int i = 0; (i) < (n); ++(i)) #define repeat_from(i, m, n) for (int i = (m); (i) < (n); ++(i)) using namespace std; template <class T> inline int sz(T &x) { return x.size(); } template <class T> inline bool setmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template <class T> inline bool setmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template <typename T, typename X> auto vectors(T a, X x) { return vector<T>(x, a); } template <typename T, typename X, typename Y, typename... Zs> auto vectors(T a, X x, Y y, Zs... zs) { auto cont = vectors(a, y, zs...); return vector<decltype(cont)>(x, cont); } // 60 / 12 = 5 // 1秒 -> 長針 360 / 60 / 60 = 1/10 度 -> 短針 360 / 12 / 60 / 60 = 1/120度 int main() { int A, B; cin >> A >> B; double hour = A * 30.0 + B * 0.5; double minute = B * 6; double d = min(abs(hour - minute), 360.0 - abs(hour - minute)); int res = d * 120.0 / (12.0 - 1.0); cout << res << endl; return 0; }