結果

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

ソースコード

diff #

#include <iostream>
using namespace std;

int main()
{
    int n;
    cin >> n;
    if(n < 10)
    {
        cout << n << endl;
    }
    else if(n == 10)
    {
        cout << 9 << endl;
    }
    else
    {
        cout << 11 << endl;
    }
}
0