結果

問題 No.163 cAPSlOCK
ユーザー yugi0922yugi0922
提出日時 2020-07-01 08:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 720 bytes
コンパイル時間 3,530 ms
コンパイル使用メモリ 75,476 KB
実行使用メモリ 37,560 KB
最終ジャッジ日時 2024-09-13 20:48:40
合計ジャッジ時間 5,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,072 KB
testcase_01 AC 55 ms
36,872 KB
testcase_02 AC 55 ms
36,876 KB
testcase_03 AC 57 ms
37,004 KB
testcase_04 AC 56 ms
37,428 KB
testcase_05 AC 56 ms
37,252 KB
testcase_06 AC 57 ms
37,020 KB
testcase_07 AC 57 ms
37,312 KB
testcase_08 AC 56 ms
37,324 KB
testcase_09 AC 55 ms
37,392 KB
testcase_10 AC 55 ms
37,008 KB
testcase_11 AC 56 ms
37,012 KB
testcase_12 AC 56 ms
37,316 KB
testcase_13 AC 56 ms
37,116 KB
testcase_14 AC 55 ms
37,208 KB
testcase_15 AC 55 ms
37,164 KB
testcase_16 AC 57 ms
37,560 KB
testcase_17 AC 55 ms
37,072 KB
testcase_18 AC 56 ms
37,404 KB
testcase_19 AC 56 ms
37,508 KB
testcase_20 AC 57 ms
37,076 KB
testcase_21 AC 55 ms
37,120 KB
testcase_22 AC 56 ms
37,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class CapsLock {
	public static void main(String[] args) throws IOException {
		InputStreamReader re = new InputStreamReader(System.in);
		BufferedReader reader = new BufferedReader(new InputStreamReader(in));
		String str = reader.readLine();
		String result = "";
		for(int i = 0; i < str.length(); i++){
			if(Character.isUpperCase( str.charAt(i))){
				String c = String.valueOf(str.charAt(i));
				c = c.toLowerCase();
				result += c;
			}else{
				String c = String.valueOf(str.charAt(i));
				c = c.toUpperCase();
				result += c;

			}
		}
		System.out.println(result);
	}
}
0