結果

問題 No.841 8/32
ユーザー mlpj56d
提出日時 2019-06-28 21:23:52
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 54,132 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 04:19:09
合計ジャッジ時間 1,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

using namespace std;

string s,t;
int main () {
    cin >> s >> t;
    if(s[0] == t[0]) cout << "8/33" << endl;
    else if(s[0] == 'S') cout << "8/32" << endl;
    else cout << "8/31" << endl;
    return 0;
}
0