結果
問題 | No.1735 C# |
ユーザー |
|
提出日時 | 2024-03-19 20:16:14 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 297 bytes |
コンパイル時間 | 526 ms |
コンパイル使用メモリ | 67,144 KB |
最終ジャッジ日時 | 2025-02-20 07:47:41 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
#include <iostream>#define ll long longusing namespace std;int main(){string s;cin >> s;if(s == "A" || s == "C" || s == "D" || s == "F" || s == "G"){cout << s << "#" << endl;}else if(s == "B") cout << "C" << endl;else if(s == "E") cout << "F" << endl;}