結果
問題 | No.2836 Comment Out |
ユーザー | milkcoffee |
提出日時 | 2024-07-20 00:10:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,562 bytes |
コンパイル時間 | 4,324 ms |
コンパイル使用メモリ | 262,084 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 00:14:32 |
合計ジャッジ時間 | 6,193 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 13 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 23 ms
5,376 KB |
testcase_15 | AC | 23 ms
5,376 KB |
testcase_16 | AC | 24 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 24 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 24 ms
5,376 KB |
testcase_21 | AC | 24 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 12 ms
5,376 KB |
testcase_25 | AC | 16 ms
5,376 KB |
testcase_26 | AC | 8 ms
5,376 KB |
testcase_27 | AC | 17 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 15 ms
5,376 KB |
testcase_30 | AC | 10 ms
5,376 KB |
testcase_31 | AC | 15 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 11 ms
5,376 KB |
testcase_34 | AC | 7 ms
5,376 KB |
testcase_35 | AC | 19 ms
5,376 KB |
testcase_36 | WA | - |
testcase_37 | AC | 19 ms
5,376 KB |
testcase_38 | AC | 14 ms
5,376 KB |
testcase_39 | AC | 12 ms
5,376 KB |
testcase_40 | WA | - |
testcase_41 | AC | 16 ms
5,376 KB |
testcase_42 | AC | 16 ms
5,376 KB |
testcase_43 | AC | 7 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
testcase_45 | WA | - |
testcase_46 | AC | 2 ms
5,376 KB |
testcase_47 | WA | - |
testcase_48 | AC | 1 ms
5,376 KB |
testcase_49 | AC | 2 ms
5,376 KB |
testcase_50 | AC | 1 ms
5,376 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | AC | 2 ms
5,376 KB |
testcase_55 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif using namespace std; // #include "boost/multiprecision/cpp_int.hpp" // using namespace boost::multiprecision; // #pragma GCC target("avx2") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #define ll long long #define rep(i, n) for (ll i = 0; i < n; ++i) #define rep_up(i, a, n) for (ll i = a; i < n; ++i) #define rep_down(i, a, n) for (ll i = a; i >= n; --i) #define P pair<ll, ll> #define pb push_back #define bit_count(x) __builtin_popcountll(x) #define gcd(a, b) __gcd(a, b) #define lcm(a, b) a / gcd(a, b) * b // #define endl "\n" #define all(v) v.begin(), v.end() #define fi first #define se second #define vll vector<ll> #define vvll vector<vll> #define vvvll vector<vvll> #define vvvvll vector<vvvll> #define pqll priority_queue<ll> #define pqllg priority_queue<ll, vector<ll>, greater<ll>> template <class T> inline void vin(vector<T> &v) { rep(i, v.size()) cin >> v.at(i); } template <class T> using V = vector<T>; constexpr ll INF = (1ll << 60); // constexpr ll mod = 1000000007; constexpr ll mod = 998244353; // using mint = atcoder::modint; // using mint = atcoder::modint998244353; // using mint = atcoder::modint1000000007; #define vmint vector<mint> #define vvmint vector<vmint> #define vvvmint vector<vvmint> #define vvvvmint vector<vvvmint> constexpr double pi = 3.14159265358979323846; random_device seed_gen; mt19937 engine(seed_gen()); template <typename T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <typename T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } template <typename T> void pt(T val) { cout << val << "\n"; } template <typename T> void pt_vll(vector<T> &v) { ll vs = v.size(); rep(i, vs) { cout << v[i]; if (i == vs - 1) cout << "\n"; else cout << " "; } } template <typename T> void pt_vmint(vector<T> &v) { ll vs = v.size(); rep(i, vs) { cout << v[i].val(); if (i == vs - 1) cout << "\n"; else cout << " "; } } ll mypow(ll a, ll n) { ll ret = 1; if (n == 0) return 1; if (a == 0) return 0; rep(i, n) { if (ret > (ll)(9e18 + 10) / a) return -1; ret *= a; } return ret; } long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } long long modinv(long long a, long long m) { long long b = m, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; if (u < 0) u += m; return u; } void solve(); // ここまでテンプレ int main() { ios::sync_with_stdio(false); cin.tie(nullptr); // cout << fixed << setprecision(16); // ll T; // cin >> T; // rep(ca, T) solve(); } // wa: min = 1 void solve() { ll n, m, k, cnt = 0, sum = 0, ans = 0; cin >> n; assert(1 <= n && n <= 200000); vll a(n); vin(a); ans = INF; rep(i, n) { assert(0 <= a[i] && a[i] <= 1000000000); chmin(ans, a[i]); } if (ans == 1) { pt("Yes"); } else { pt("No"); } }