結果
| 問題 | 
                            No.105 arcの六角ボルト
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2025-01-28 13:01:45 | 
| 言語 | C++23  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,237 bytes | 
| コンパイル時間 | 4,325 ms | 
| コンパイル使用メモリ | 317,344 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2025-01-28 13:01:50 | 
| 合計ジャッジ時間 | 5,063 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
// #define int long long
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<typename T>
using ordered_set = tree<T, null_type, std::less<T>, rb_tree_tag, tree_order_statistics_node_update>;
// std::cout << *s.find_by_order(1) << std::endl; // 2
vector<string> split(string str, char del) {
   int first = 0;
   int last = str.find_first_of(del);
   vector<string> result;
 
   while (first < str.size()) {
     result.push_back(str.substr(first, last - first));
     first = last + 1;
     last = str.find_first_of(del, first);
     if (last == string::npos) last = str.size();
   }
   return result;
 }
signed main(){
    // これがないと落ちることがある
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    ll t;
    cin >> t;
    for (ll iii = 0; iii < t; iii++){
        ld ma = 1e18;
        vector<pair<ld,ld>> xy(6);
        for (ll i = 0; i < 6; i++){
            cin >> xy[i].first>>xy[i].second;
            if(xy[i].first>0&&asin(xy[i].second)>0){
                ma = min(ma, asin(xy[i].second));
            }
        }
        cout <<setprecision(20)<< ma/M_PI*180 << endl;
    }
}