結果
問題 | No.1735 C# |
ユーザー |
![]() |
提出日時 | 2021-12-23 21:43:54 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 1,754 ms |
コンパイル使用メモリ | 192,376 KB |
最終ジャッジ日時 | 2025-01-27 06:00:20 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ string s; cin>>s; if(s=="E"){ cout<<"F"<<endl; return 0; } if(s=="B"){ cout<<"C"<<endl; return 0; } cout<<s<<"#"<<endl; return 0; }