結果

問題 No.163 cAPSlOCK
ユーザー YOSHIYOSHI
提出日時 2021-03-02 21:23:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 611 bytes
コンパイル時間 3,245 ms
コンパイル使用メモリ 74,920 KB
実行使用メモリ 50,348 KB
最終ジャッジ日時 2024-10-03 02:10:08
合計ジャッジ時間 5,430 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,292 KB
testcase_01 AC 54 ms
50,240 KB
testcase_02 AC 53 ms
50,232 KB
testcase_03 AC 55 ms
50,216 KB
testcase_04 AC 57 ms
50,304 KB
testcase_05 AC 52 ms
50,300 KB
testcase_06 AC 53 ms
50,248 KB
testcase_07 AC 52 ms
50,292 KB
testcase_08 AC 53 ms
49,996 KB
testcase_09 AC 53 ms
50,348 KB
testcase_10 AC 54 ms
50,256 KB
testcase_11 AC 53 ms
50,140 KB
testcase_12 AC 53 ms
50,344 KB
testcase_13 AC 53 ms
50,264 KB
testcase_14 AC 53 ms
50,116 KB
testcase_15 AC 52 ms
50,160 KB
testcase_16 AC 54 ms
49,920 KB
testcase_17 AC 55 ms
49,928 KB
testcase_18 AC 53 ms
49,928 KB
testcase_19 AC 53 ms
50,260 KB
testcase_20 AC 52 ms
50,184 KB
testcase_21 AC 52 ms
50,176 KB
testcase_22 AC 52 ms
49,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000163_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		char[] charArr = br.readLine().toCharArray();
		char[] newCharArr = new char[charArr.length];
		for(int i = 0; i < charArr.length; i++) {
			if(Character.isUpperCase(charArr[i])) {
				newCharArr[i] = (char) (charArr[i] + 32);
			} else {
				newCharArr[i] = (char) (charArr[i] - 32);
			}
		}
		System.out.println(new String(newCharArr));
	}
}
0