結果

問題 No.163 cAPSlOCK
ユーザー MatumoMatumo
提出日時 2018-07-13 03:10:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-10-05 05:54:57
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,064 KB
testcase_01 AC 129 ms
40,960 KB
testcase_02 AC 125 ms
40,944 KB
testcase_03 AC 116 ms
40,076 KB
testcase_04 AC 129 ms
40,984 KB
testcase_05 AC 112 ms
39,936 KB
testcase_06 AC 127 ms
40,804 KB
testcase_07 AC 123 ms
41,068 KB
testcase_08 AC 128 ms
41,032 KB
testcase_09 AC 127 ms
40,988 KB
testcase_10 AC 113 ms
39,844 KB
testcase_11 AC 124 ms
41,052 KB
testcase_12 AC 124 ms
40,932 KB
testcase_13 AC 128 ms
40,792 KB
testcase_14 AC 126 ms
41,328 KB
testcase_15 AC 125 ms
41,268 KB
testcase_16 AC 127 ms
41,104 KB
testcase_17 AC 126 ms
41,456 KB
testcase_18 AC 113 ms
39,936 KB
testcase_19 AC 124 ms
40,832 KB
testcase_20 AC 109 ms
40,116 KB
testcase_21 AC 125 ms
41,196 KB
testcase_22 AC 128 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {

		String s = sc.next();
		StringBuffer sb = new StringBuffer();

		for(int i = 0; i < s.length(); i++) {
			char c = s.charAt(i);
			if(Character.isUpperCase(c)) {
				sb.append(Character.toLowerCase(c));
			} else {
				sb.append(Character.toUpperCase(c));
			}
		}
		
		System.out.println(sb);
    }
}
0