結果
問題 | No.1735 C# |
ユーザー |
|
提出日時 | 2021-11-22 15:28:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 909 bytes |
コンパイル時間 | 1,649 ms |
コンパイル使用メモリ | 166,912 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 01:49:16 |
合計ジャッジ時間 | 2,383 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
#include<bits/stdc++.h>#define rep(i,n) for(int i=0;i<(n);++i)#define reps(i,n) for(int i=1;i<=(n);++i)#define repr(i,n) for(int i=2;i*i<=(n);++i)#define ll long long#define all(x) (x).begin(),(x).end()#define sz(x) ((string)(x).size())#define pb push_back#define pob pop_back()#define MMod (ll)1000000007#define mmod (ll)998244353#define setp(x) setprecision((ll)(x))#define INF (ll)(1000000000000000000)using namespace std;using vi=vector<int>;using vc=vector<char>;using vb=vector<bool>;using vl=vector<long long>;using vvi=vector<vi>;using vvl=vector<vl>;using vvc=vector<vc>;using vvb=vector<vb>;using vpi=vector<pair<int,int>>;using vpl=vector<pair<ll,ll>>;using vs=vector<string>;using pii=pair<int, int>;using pll=pair<ll,ll>;using pqi=priority_queue<int>;int main(){char c; cin>>c;if(c=='B'||c=='E') cout<<char(c+1);else cout<<c<<"#"<<endl;return 0;}