結果
問題 | No.163 cAPSlOCK |
ユーザー |
|
提出日時 | 2015-06-02 09:46:04 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 384 ms |
コンパイル使用メモリ | 57,180 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 13:20:13 |
合計ジャッジ時間 | 1,060 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); string s; cin >> s; for (int i = 0; i < s.length(); ++i) { int x = s[i]; if (x >= 97) x -= 32; else x += 32; s[i] = x; } cout << s << endl; return 0; }