結果

問題 No.1735 C#
ユーザー V_MelvilleV_Melville
提出日時 2021-11-12 21:29:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 2,614 ms
コンパイル使用メモリ 242,524 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 04:58:35
合計ジャッジ時間 3,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

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