結果

問題 No.153 石の山
ユーザー ふーらくたる
提出日時 2016-09-17 03:35:48
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 54,696 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 08:12:15
合計ジャッジ時間 1,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
    int n;
    cin >> n;

    if (n == 1) {
        cout << "B" << endl;
    } else {
        cout << "A" << endl;
    }
    return 0;
}
0