Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
submit2 /
115009 /
Delete
Unzip
Name
Size
Permission
Date
Action
a.cpp
3.66
KB
-rwxr-x---
2024-08-28 22:35
cerror.txt
0
B
-rwxr-x---
2024-08-28 22:35
error.txt
0
B
-rwxr-x---
2024-08-28 22:35
submit_info.txt
287
B
-rwxr-x---
2024-08-28 22:35
Save
Rename
#if !__INCLUDE_LEVEL__ #include __FILE__ int main() { int N; cin >> N; for (int i = 0; i < N; i++) { double A; cin >> A; if (A >= 170) cout << "Yes" << " "; else cout << "No" << " "; } cout << endl; } #else // ↓TEMPLATE↓ #include <bits/stdc++.h> using namespace std; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif #pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") struct Fast {Fast() {std::cin.tie(0); ios::sync_with_stdio(false);}} fast; #define endl '\n' //cout << fixed << setprecision(15); using ll = long long; using ld = long double; using vi = vector<int>; using vll = vector<long long>; using vvi = vector<vi>; using vvll = vector<vll>; using vs = vector<string>; using pii = pair<int, int>; using pll = pair<ll, ll>; using Graph = vector<vector<int>>; constexpr int mod = 1e9 + 7; constexpr int Mod = 998244353; constexpr int INF = 1e9; constexpr ll LINF = 1e18; const vector<int> dx = {1, 0, -1, 0, 1, -1, -1, 1}; const vector<int> dy = {0, 1, 0, -1, 1, 1, -1, -1}; template<class T> bool chmin(T &a, T b) {if(a>b) {a=b;return true;}return false;} template<class T> bool chmax(T &a, T b) {if(a<b) {a=b;return true;}return false;} template <class T> T gcd(T a, T b) {if (b == 0)return a; else return gcd(b, a % b);} template <class T> inline T lcm(T a, T b) {return (a * b) / gcd(a, b);} template<class T> istream &operator>>(istream &is, vector<T> &v) {for (auto &x : v){is >> x;}return is;} template<class T> ostream &operator<<(ostream &os, vector<T> &v) {for(int i=0;i<v.size();i++){os<<v[i]<<(i+1==v.size()?"\n":" ");}return os;} template<class... T> void input(T&... a){(cin >> ... >> a);} template<class... T> constexpr auto min(T... a){return min(initializer_list<common_type_t<T...>>{a...});} template<class... T> constexpr auto max(T... a){return max(initializer_list<common_type_t<T...>>{a...});} template<class V, class H> void resize(vector<V>& v,const H head){v.resize(head);} template<class V, class H, class... T> void resize(vector<V>& vec,const H& head,const T... tail){vec.resize(head);for(auto& v:vec)resize(v, tail...);} template<class H> void input_set(istream& is,const int idx,vector<H>& head){is>>head[idx];} template<class H,class... T>void input_set(istream& is,const int idx,vector<H>& head,T&... tail){input_set(is>>head[idx],idx,tail...);} template<class H,class... T>void input_set(istream& is,vector<H>& head,T&... tail){for(int i=0;i<head.size();i++)input_set(is,i,head,tail...);} template<class H,class... T>void input_set(vector<H>& head,T&... tail){input_set(cin,head,tail...);} //#define int long long #define pb emplace_back #define mp make_pair #define PQ priority_queue<int> #define PQG priority_queue<int,vector<int>,greater<int>> #define all(a) (a).begin(),(a).end() #define fi first #define se second #define itn int #define YES(bool) cout << ((bool) ? "YES" : "NO") << endl #define yes(bool) cout << ((bool) ? "yes" : "no") << endl #define Yes(bool) cout << ((bool) ? "Yes" : "No") << endl #define POSSIBLE(bool) cout << ((bool) ? "POSSIBLE" : "IMPOSSIBLE") << endl #define Possible(bool) cout << ((bool) ? "Possible" : "Impossible") << endl #define INT(...) int __VA_ARGS__; input(__VA_ARGS__) #define LL(...) ll __VA_ARGS__; input(__VA_ARGS__) #define STR(...) string __VA_ARGS__; input(__VA_ARGS__) #define DBL(...) double __VA_ARGS__; input(__VA_ARGS__) #define Sort(a) sort(all(a)) #define Rev(a) reverse(all(a)) #define Uniq(a) sort(all(a));a.erase(unique(all(a)),end(a)) // ↑TEMPLATE↑ #endif