結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,168 KB
testcase_01 AC 114 ms
41,428 KB
testcase_02 AC 93 ms
40,104 KB
testcase_03 AC 111 ms
41,244 KB
testcase_04 AC 113 ms
41,096 KB
testcase_05 AC 96 ms
40,188 KB
testcase_06 AC 106 ms
41,056 KB
testcase_07 AC 112 ms
41,440 KB
testcase_08 AC 113 ms
41,324 KB
testcase_09 AC 98 ms
39,912 KB
testcase_10 AC 112 ms
41,340 KB
testcase_11 AC 113 ms
41,428 KB
testcase_12 AC 129 ms
40,952 KB
testcase_13 AC 116 ms
40,388 KB
testcase_14 AC 120 ms
41,096 KB
testcase_15 AC 110 ms
40,596 KB
testcase_16 AC 115 ms
41,328 KB
testcase_17 AC 110 ms
40,900 KB
testcase_18 AC 109 ms
41,256 KB
testcase_19 AC 104 ms
40,580 KB
testcase_20 AC 96 ms
40,264 KB
testcase_21 AC 116 ms
41,052 KB
testcase_22 AC 118 ms
41,184 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++) {
			if (Character.isLowerCase(reverse[i])) {
				reverse[i] = Character.toUpperCase(reverse[i]);
			} else {
				reverse[i] = Character.toLowerCase(reverse[i]);
			}
			System.out.print(reverse[i]);
		}

	}

}
0