結果

問題 No.163 cAPSlOCK
ユーザー len_proglen_prog
提出日時 2016-06-02 22:55:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 41,152 KB
最終ジャッジ日時 2024-10-08 06:03:56
合計ジャッジ時間 7,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,940 KB
testcase_01 AC 128 ms
41,140 KB
testcase_02 AC 132 ms
41,152 KB
testcase_03 AC 135 ms
40,840 KB
testcase_04 AC 140 ms
40,900 KB
testcase_05 AC 130 ms
41,000 KB
testcase_06 AC 127 ms
41,012 KB
testcase_07 AC 112 ms
41,076 KB
testcase_08 AC 124 ms
40,916 KB
testcase_09 AC 113 ms
41,080 KB
testcase_10 AC 125 ms
40,972 KB
testcase_11 AC 126 ms
40,948 KB
testcase_12 AC 124 ms
41,080 KB
testcase_13 AC 124 ms
40,956 KB
testcase_14 AC 125 ms
41,076 KB
testcase_15 AC 125 ms
41,144 KB
testcase_16 AC 125 ms
41,104 KB
testcase_17 AC 126 ms
41,140 KB
testcase_18 AC 126 ms
40,860 KB
testcase_19 AC 127 ms
41,120 KB
testcase_20 AC 129 ms
41,152 KB
testcase_21 AC 129 ms
40,972 KB
testcase_22 AC 129 ms
40,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki163 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String beforeStr = scan.next();

		char[] strArr = beforeStr.toCharArray();
		char[] convertedArr = new char[strArr.length];

		for(int i = 0; i < strArr.length; i++){
			if(Character.isUpperCase(strArr[i])){
				convertedArr[i] = Character.toLowerCase(strArr[i]);
			}else{
				convertedArr[i] = Character.toUpperCase(strArr[i]);
			}
		}

		String afterStr = String.valueOf(convertedArr);
		System.out.println(afterStr);
	}

}
0