結果

問題 No.1735 C#
ユーザー V_Melville
提出日時 2021-11-12 21:29:43
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 242,560 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 12:09:39
合計ジャッジ時間 3,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 2 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using std::cin;
using std::cout;

int main() {
	char s;
	cin >> s;
	
	if (s == 'E') puts("F");
	else if (s == 'B') puts("C");
	else cout << s << '+' << '\n';
	
	return 0;
}
0