結果

問題 No.163 cAPSlOCK
ユーザー clamdclamd
提出日時 2016-12-11 07:34:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 3,088 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-05-06 17:55:54
合計ジャッジ時間 6,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,024 KB
testcase_01 AC 106 ms
41,024 KB
testcase_02 AC 95 ms
39,888 KB
testcase_03 AC 102 ms
39,744 KB
testcase_04 AC 107 ms
39,920 KB
testcase_05 AC 108 ms
41,156 KB
testcase_06 AC 109 ms
40,968 KB
testcase_07 AC 115 ms
41,152 KB
testcase_08 AC 111 ms
40,900 KB
testcase_09 AC 114 ms
40,968 KB
testcase_10 AC 106 ms
40,764 KB
testcase_11 AC 101 ms
41,032 KB
testcase_12 AC 124 ms
41,336 KB
testcase_13 AC 107 ms
41,564 KB
testcase_14 AC 126 ms
41,276 KB
testcase_15 AC 120 ms
41,008 KB
testcase_16 AC 101 ms
39,924 KB
testcase_17 AC 112 ms
41,172 KB
testcase_18 AC 106 ms
41,052 KB
testcase_19 AC 108 ms
41,056 KB
testcase_20 AC 110 ms
41,104 KB
testcase_21 AC 93 ms
40,172 KB
testcase_22 AC 101 ms
40,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class changeUpperLower {

	public static void main(String[] args) {
		Scanner sn = new Scanner(System.in);
		String s = sn.next();
		char[] reverse = s.toCharArray();
		for (int i = 0; i < s.length(); i++) {
			reverse[i] = Character.isLowerCase(reverse[i]) ? Character.toUpperCase(reverse[i])
					: Character.toLowerCase(reverse[i]);

			System.out.print(reverse[i]);
		}

	}

}
0