結果

問題 No.163 cAPSlOCK
ユーザー clamdclamd
提出日時 2016-12-11 07:22:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 451 bytes
コンパイル時間 4,183 ms
コンパイル使用メモリ 75,512 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-11-29 02:23:35
合計ジャッジ時間 8,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,948 KB
testcase_01 AC 133 ms
53,980 KB
testcase_02 AC 131 ms
54,060 KB
testcase_03 AC 141 ms
53,880 KB
testcase_04 AC 139 ms
53,808 KB
testcase_05 AC 132 ms
53,920 KB
testcase_06 AC 132 ms
53,972 KB
testcase_07 AC 139 ms
53,688 KB
testcase_08 AC 143 ms
54,016 KB
testcase_09 AC 141 ms
54,020 KB
testcase_10 AC 140 ms
53,904 KB
testcase_11 AC 130 ms
53,772 KB
testcase_12 AC 137 ms
53,940 KB
testcase_13 AC 143 ms
53,828 KB
testcase_14 AC 141 ms
53,772 KB
testcase_15 AC 135 ms
53,744 KB
testcase_16 AC 142 ms
53,860 KB
testcase_17 AC 137 ms
53,892 KB
testcase_18 AC 137 ms
53,952 KB
testcase_19 AC 133 ms
53,912 KB
testcase_20 AC 132 ms
53,848 KB
testcase_21 AC 132 ms
53,984 KB
testcase_22 AC 141 ms
53,864 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