結果

問題 No.1040 垂直大学
ユーザー 👑 CleyLCleyL
提出日時 2021-10-09 10:57:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 63,252 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-26 12:54:27
合計ジャッジ時間 1,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 13 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
  int n;cin>>n;
  if((n%180) && !n%90){
    cout << "Yes" << endl;
  }else{
    cout << "No" << endl;
  }
}
0