結果

問題 No.163 cAPSlOCK
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-08 11:26:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 3,429 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-26 11:14:20
合計ジャッジ時間 7,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,444 KB
testcase_01 AC 125 ms
41,272 KB
testcase_02 AC 114 ms
40,040 KB
testcase_03 AC 116 ms
41,356 KB
testcase_04 AC 126 ms
41,284 KB
testcase_05 AC 122 ms
41,124 KB
testcase_06 AC 129 ms
41,108 KB
testcase_07 AC 128 ms
41,316 KB
testcase_08 AC 129 ms
41,512 KB
testcase_09 AC 128 ms
41,172 KB
testcase_10 AC 130 ms
41,368 KB
testcase_11 AC 131 ms
41,480 KB
testcase_12 AC 130 ms
41,156 KB
testcase_13 AC 128 ms
41,376 KB
testcase_14 AC 113 ms
40,952 KB
testcase_15 AC 127 ms
41,432 KB
testcase_16 AC 114 ms
41,488 KB
testcase_17 AC 116 ms
39,796 KB
testcase_18 AC 127 ms
41,004 KB
testcase_19 AC 127 ms
41,088 KB
testcase_20 AC 129 ms
41,184 KB
testcase_21 AC 128 ms
41,492 KB
testcase_22 AC 128 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No163 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		StringBuilder str = new StringBuilder();

		char[] arr = S.toCharArray();
		for (char c : arr) {
			if (Character.isUpperCase(c)) {
				String s = String.valueOf(c);
				s = s.toLowerCase();
				str.append(s);
			}else {
				String s = String.valueOf(c);
				s = s.toUpperCase();
				str.append(s);
			}
		}
		System.out.println(str);

	}

}
0