結果
| 問題 |
No.163 cAPSlOCK
|
| コンテスト | |
| ユーザー |
半匠・鳳・みけねこ太郎
|
| 提出日時 | 2024-08-04 18:35:28 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 272 bytes |
| コンパイル時間 | 183 ms |
| コンパイル使用メモリ | 31,744 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-08-04 18:35:30 |
| 合計ジャッジ時間 | 2,212 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 RE * 6 |
ソースコード
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main(){
char str[32];
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;
}
半匠・鳳・みけねこ太郎