結果
問題 | No.163 cAPSlOCK |
ユーザー |
![]() |
提出日時 | 2024-08-04 18:36:59 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 273 bytes |
コンパイル時間 | 467 ms |
コンパイル使用メモリ | 31,616 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-04 18:37:01 |
合計ジャッジ時間 | 1,523 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <stdio.h>#include <string.h>#include <ctype.h>int main(){char str[128];scanf("%s", str);for(int i=0; i < (int)strlen(str); i++){if(isupper(str[i])) str[i] += 32;else str[i] -= 32;}puts(str);return 0;}