結果

問題 No.163 cAPSlOCK
ユーザー clamdclamd
提出日時 2016-12-11 07:34:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 4,207 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-11-29 02:26:12
合計ジャッジ時間 7,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,056 KB
testcase_01 AC 115 ms
53,740 KB
testcase_02 AC 100 ms
52,964 KB
testcase_03 AC 121 ms
53,904 KB
testcase_04 AC 112 ms
52,724 KB
testcase_05 AC 119 ms
54,152 KB
testcase_06 AC 120 ms
53,892 KB
testcase_07 AC 109 ms
52,960 KB
testcase_08 AC 121 ms
53,892 KB
testcase_09 AC 117 ms
53,948 KB
testcase_10 AC 114 ms
54,168 KB
testcase_11 AC 105 ms
52,656 KB
testcase_12 AC 119 ms
53,712 KB
testcase_13 AC 125 ms
54,104 KB
testcase_14 AC 118 ms
53,952 KB
testcase_15 AC 108 ms
52,996 KB
testcase_16 AC 122 ms
53,968 KB
testcase_17 AC 118 ms
53,820 KB
testcase_18 AC 115 ms
54,016 KB
testcase_19 AC 105 ms
53,124 KB
testcase_20 AC 119 ms
53,940 KB
testcase_21 AC 121 ms
53,896 KB
testcase_22 AC 127 ms
54,172 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