結果

問題 No.163 cAPSlOCK
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 18:40:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 657 bytes
コンパイル時間 3,502 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-06-30 04:31:55
合計ジャッジ時間 7,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,024 KB
testcase_01 AC 128 ms
54,048 KB
testcase_02 AC 128 ms
54,188 KB
testcase_03 AC 136 ms
53,948 KB
testcase_04 AC 134 ms
53,992 KB
testcase_05 AC 128 ms
54,160 KB
testcase_06 AC 127 ms
53,928 KB
testcase_07 AC 120 ms
52,908 KB
testcase_08 AC 120 ms
53,012 KB
testcase_09 AC 133 ms
54,076 KB
testcase_10 AC 129 ms
53,832 KB
testcase_11 AC 126 ms
54,056 KB
testcase_12 AC 133 ms
54,148 KB
testcase_13 AC 134 ms
54,272 KB
testcase_14 AC 137 ms
53,948 KB
testcase_15 AC 131 ms
53,932 KB
testcase_16 AC 120 ms
52,800 KB
testcase_17 AC 130 ms
54,332 KB
testcase_18 AC 131 ms
54,000 KB
testcase_19 AC 126 ms
54,008 KB
testcase_20 AC 114 ms
52,900 KB
testcase_21 AC 124 ms
53,836 KB
testcase_22 AC 133 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        String s = sc.nextLine();
        char[] chars = new char[s.length()];

        for(int i=0; i<s.length(); i++) {
        	char c = s.charAt(i);
        	if(Character.isUpperCase(c)) {
        		chars[i] = Character.toLowerCase(c);
        	} else if(Character.isLowerCase(c)) {
        		chars[i] = Character.toUpperCase(c);
        	} else {
        		chars[i] = c;
        	}
        }

        for(int i=0; i<s.length(); i++) {
        	System.out.print(chars[i]);
        }
        System.out.println();
	}
}
0