結果

問題 No.163 cAPSlOCK
ユーザー len_discoreglen_discoreg
提出日時 2016-06-02 21:14:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 3,306 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-10-08 05:57:59
合計ジャッジ時間 7,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,416 KB
testcase_01 AC 125 ms
41,148 KB
testcase_02 AC 119 ms
41,028 KB
testcase_03 AC 120 ms
41,132 KB
testcase_04 AC 120 ms
41,148 KB
testcase_05 AC 119 ms
40,944 KB
testcase_06 AC 124 ms
40,988 KB
testcase_07 AC 115 ms
41,016 KB
testcase_08 AC 126 ms
41,084 KB
testcase_09 AC 125 ms
41,196 KB
testcase_10 AC 121 ms
41,072 KB
testcase_11 AC 121 ms
41,108 KB
testcase_12 AC 120 ms
41,008 KB
testcase_13 AC 103 ms
41,212 KB
testcase_14 AC 123 ms
41,208 KB
testcase_15 AC 119 ms
41,340 KB
testcase_16 AC 123 ms
41,016 KB
testcase_17 AC 121 ms
41,484 KB
testcase_18 AC 108 ms
41,092 KB
testcase_19 AC 117 ms
41,072 KB
testcase_20 AC 118 ms
41,212 KB
testcase_21 AC 120 ms
40,884 KB
testcase_22 AC 119 ms
41,236 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