結果
| 問題 |
No.1040 垂直大学
|
| コンテスト | |
| ユーザー |
square1001
|
| 提出日時 | 2020-05-01 21:21:14 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 208 bytes |
| コンパイル時間 | 579 ms |
| コンパイル使用メモリ | 72,752 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-24 21:27:26 |
| 合計ジャッジ時間 | 1,288 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 15 WA * 2 |
ソースコード
#include <cmath>
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int N;
cin >> N;
cout << (N % 360 == 90 ? "Yes" : "No") << endl;
return 0;
}
square1001