結果
問題 | No.163 cAPSlOCK |
ユーザー | maicune |
提出日時 | 2019-08-27 19:27:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 270 bytes |
コンパイル時間 | 1,270 ms |
コンパイル使用メモリ | 160,200 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-11-17 00:31:03 |
合計ジャッジ時間 | 10,495 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | TLE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ string s,t,ans; cin>>s; transform(s.begin(),s.end(),t.begin(),::toupper); for(int i=0;i<s.size();++i){ if(s[i]==t[i])ans+=tolower(t[i]); else ans+=t[i]; } cout<<ans<<endl; }