結果

問題 No.1735 C#
ユーザー takano32
提出日時 2023-11-10 21:27:37
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 168 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 160,896 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 01:05:38
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using  namespace std;

int main()
{
  char S;
  cin >> S;
  if (S=='E') {
  	cout << "F" << endl;
  } else {
  	cout << S << "#" << endl;
  }
}
0