結果

問題 No.290 1010
ユーザー itezpace
提出日時 2016-09-11 07:16:54
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 54,876 KB
実行使用メモリ 5,296 KB
最終ジャッジ日時 2024-11-17 00:17:52
合計ジャッジ時間 1,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
  int n;
  cin>>n;
  string s,a;
  cin>>s;
  if(n>1){
    a="YES";
  } else {
    a="NO";
  }
  cout<<a<<endl;
  return 0;
}
0