結果

問題 No.163 cAPSlOCK
ユーザー ffmm00ffmm00
提出日時 2015-06-08 07:34:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 3,075 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 55,908 KB
最終ジャッジ日時 2024-07-06 14:42:19
合計ジャッジ時間 6,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,088 KB
testcase_01 AC 104 ms
52,944 KB
testcase_02 AC 98 ms
52,936 KB
testcase_03 AC 111 ms
53,848 KB
testcase_04 AC 114 ms
54,088 KB
testcase_05 AC 102 ms
52,704 KB
testcase_06 AC 118 ms
54,152 KB
testcase_07 AC 96 ms
52,932 KB
testcase_08 AC 102 ms
52,704 KB
testcase_09 AC 110 ms
54,176 KB
testcase_10 AC 110 ms
53,980 KB
testcase_11 AC 126 ms
52,932 KB
testcase_12 AC 112 ms
54,036 KB
testcase_13 AC 109 ms
54,076 KB
testcase_14 AC 111 ms
54,004 KB
testcase_15 AC 115 ms
53,972 KB
testcase_16 AC 112 ms
54,080 KB
testcase_17 AC 96 ms
52,788 KB
testcase_18 AC 118 ms
55,908 KB
testcase_19 AC 109 ms
53,960 KB
testcase_20 AC 115 ms
53,880 KB
testcase_21 AC 115 ms
54,028 KB
testcase_22 AC 120 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N163 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		char[] S = sca.next().toCharArray();
		for (int i = 0; i < S.length; i++) {
			if ('a' <= S[i] && S[i] <= 'z')
				S[i] = (char) (S[i] - 'a' + 'A');
			else
				S[i] = (char) (S[i] - 'A' + 'a');
		}

		System.out.println(S);

	}

}
0