結果
問題 | No.1040 垂直大学 |
ユーザー | KY2001 |
提出日時 | 2020-05-01 21:22:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,189 bytes |
コンパイル時間 | 2,012 ms |
コンパイル使用メモリ | 200,584 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 01:48:03 |
合計ジャッジ時間 | 2,663 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" #define int long long #define FOR(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(obj) begin(obj), end(obj) #define MAX(x) *max_element(ALL(x)) #define MIN(x) *min_element(ALL(x)) #define LOWER_BOUND(A, key) distance(A.begin(), lower_bound(ALL(A), key)) #define UPPER_BOUND(A, key) distance(A.begin(), upper_bound(ALL(A), key)) using namespace std; using ll = long long; const int MOD = (int)(1e9 + 7); const int INF = (int)(1e13 + 7); int ceil_(int a, int b) { return (a + (b - 1)) / b; } int bpm(int x, unsigned int y) { if (x == 0) return 0; if (y == 0) return 1; int ans = 1; int digit = (int)((log((double)y) / log((double)2) / 1 + 1)); x %= MOD; for (unsigned int i = 0; i < digit; i++) { if (((y >> i) & 1u) == 1) ans = ans * x % MOD; x = x * x % MOD; } return ans; } template <class T> void cumulative_sum(T container) { for (int i = 0; i < container.size() - 1; i++) container[i + 1] += container[i]; } signed main() { int N; cin >> N; if (N % 360 == 90 or N % 360 == 270) { cout << "Yes" << endl; } else { cout << "No" << endl; } }