結果

問題 No.8104 黒に近い、黒
ユーザー 3mEhsfd8aG5jx2t
提出日時 2023-03-31 22:07:45
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 2,774 ms
コンパイル使用メモリ 192,096 KB
最終ジャッジ日時 2025-02-11 20:35:48
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i, n) for (int i = 0; i < (int)(n); i++)
using ll = long long;
using namespace std;
int main() {
  int N;
  cin >> N;
  if(N == 5) {
    cout << 11 << endl;
  }
  if(N == 6) {
    cout << 11 << endl;
  }
  if(N == 11) {
    cout << 11 << endl;
  }
  if(N == 12) {
    cout << 11 << endl;
  }
  if(N == 14) {
    cout << 11 << endl;
  }
}
0