結果
問題 | No.1236 長針と短針 |
ユーザー | wunderkammer2 |
提出日時 | 2020-09-25 21:43:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,155 bytes |
コンパイル時間 | 1,399 ms |
コンパイル使用メモリ | 126,448 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 06:17:56 |
合計ジャッジ時間 | 4,981 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:90:53: warning: division by zero [-Wdiv-by-zero] 90 | v.emplace_back(12 * 60 * 60 + 0 * 60 + 0 + 0/0 / 11); | ~^~
ソースコード
#include<algorithm> //sort,二分探索,など #include<bitset> //固定長bit集合 #include<cmath> //pow,logなど #include<complex> //複素数 #include<deque> //両端アクセスのキュー #include<fstream> //ファイルストリーム(標準入力変更用) #include<functional> //sortのgreater #include<iomanip> //setprecision(浮動小数点の出力の誤差) #include<iostream> //入出力 #include<iterator> //集合演算(積集合,和集合,差集合など) #include<map> //map(辞書) #include<numeric> //iota(整数列の生成),gcdとlcm(c++17) #include<queue> //キュー #include<set> //集合 #include<stack> //スタック #include<string> //文字列 #include<unordered_map> //イテレータあるけど順序保持しないmap #include<unordered_set> //イテレータあるけど順序保持しないset #include<utility> //pair #include<vector> //可変長配列 //名前 using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef map<string, int> msi; typedef map<string, ll> msll; typedef pair<int, int> pii; typedef pair<ll, ll> pllll; typedef vector<int> vi; typedef vector<ll> vll; typedef vector<string> vs; typedef vector<bool> vb; typedef vector<vector<int>> vvi; typedef vector<vector<ll>> vvll; typedef vector<vector<string>> vvs; typedef vector<vector<bool>> vvb; //定数 const ll MOD = 1000000007; const ll INF = 1000000000000000000; const int MAXR = 100000; //10^5:配列の最大のrange //マクロ #define rep(i,n) for(int i=0;i<n;i++) #define reps(i,s,e) for(int i=s;i<e;i++) #define repse(i,s,e) for(int i=s;i<=e;i++) #define rrep(i,n) for(int i=n-1;i>=0;i--) #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() #define in1(x1) cin >> x1 #define in2(x1, x2) cin >> x1 >> x2 #define in3(x1, x2, x3) cin >> x1 >> x2 >> x3 #define inN(x, N) rep(i, N) in1(x[i]) #define outl(x) cout << x << endl #define out2l(x, y) cout << x << " " << y << endl //よく使う関数 template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); //標準入力をファイルに変更 //std::ifstream in("input.txt"); //std::cin.rdbuf(in.rdbuf()); int A, B; in2(A, B); ld current = A * 60 * 60 + B * 60; vector<ld> v; v.emplace_back(0); v.emplace_back( 1 * 60 * 60 + 5 * 60 + 27 + 3.0 / 11); v.emplace_back( 2 * 60 * 60 + 10 * 60 + 54 + 6.0 / 11); v.emplace_back( 3 * 60 * 60 + 16 * 60 + 21 + 9.0 / 11); v.emplace_back( 4 * 60 * 60 + 21 * 60 + 49 + 1.0 / 11); v.emplace_back( 5 * 60 * 60 + 27 * 60 + 16 + 4.0 / 11); v.emplace_back( 6 * 60 * 60 + 32 * 60 + 43 + 7.0 / 11); v.emplace_back( 7 * 60 * 60 + 38 * 60 + 10 + 10.0 / 11); v.emplace_back( 8 * 60 * 60 + 43 * 60 + 38 + 2.0 / 11); v.emplace_back( 9 * 60 * 60 + 49 * 60 + 5 + 5.0 / 11); v.emplace_back(10 * 60 * 60 + 54 * 60 + 32 + 8.0 / 11); v.emplace_back(12 * 60 * 60 + 0 * 60 + 0 + 0/0 / 11); v.emplace_back(13 * 60 * 60 + 5 * 60 + 27 + 3.0 / 11); v.emplace_back(14 * 60 * 60 + 10 * 60 + 54 + 6.0 / 11); v.emplace_back(15 * 60 * 60 + 16 * 60 + 21 + 9.0 / 11); v.emplace_back(16 * 60 * 60 + 21 * 60 + 49 + 1.0 / 11); v.emplace_back(17 * 60 * 60 + 27 * 60 + 16 + 4.0 / 11); v.emplace_back(18 * 60 * 60 + 32 * 60 + 43 + 7.0 / 11); v.emplace_back(19 * 60 * 60 + 38 * 60 + 10 + 10.0 / 11); v.emplace_back(20 * 60 * 60 + 43 * 60 + 38 + 2.0 / 11); v.emplace_back(21 * 60 * 60 + 49 * 60 + 5 + 5.0 / 11); v.emplace_back(22 * 60 * 60 + 54 * 60 + 32 + 8.0 / 11); v.emplace_back(24 * 60 * 60 + 0 * 60 + 0 + 0.0 / 11); ld ans = INF; for (auto x : v) { ld tmp = x - current; if (tmp < 0) continue; chmin(ans, tmp); } outl((ll)ans); return 0; }