結果

問題 No.163 cAPSlOCK
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-01-01 13:48:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 2,888 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-09-19 09:08:48
合計ジャッジ時間 7,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
42,088 KB
testcase_01 AC 159 ms
42,452 KB
testcase_02 AC 159 ms
41,928 KB
testcase_03 AC 164 ms
42,460 KB
testcase_04 AC 162 ms
42,328 KB
testcase_05 AC 163 ms
42,396 KB
testcase_06 AC 164 ms
42,184 KB
testcase_07 AC 162 ms
42,076 KB
testcase_08 AC 162 ms
42,340 KB
testcase_09 AC 158 ms
42,468 KB
testcase_10 AC 162 ms
42,176 KB
testcase_11 AC 162 ms
42,204 KB
testcase_12 AC 160 ms
42,420 KB
testcase_13 AC 164 ms
42,044 KB
testcase_14 AC 173 ms
42,204 KB
testcase_15 AC 162 ms
42,216 KB
testcase_16 AC 162 ms
42,496 KB
testcase_17 AC 161 ms
42,112 KB
testcase_18 AC 159 ms
42,252 KB
testcase_19 AC 159 ms
42,024 KB
testcase_20 AC 160 ms
42,288 KB
testcase_21 AC 158 ms
42,448 KB
testcase_22 AC 162 ms
42,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Caps {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str = in.next();
        int n = str.length();
        String caps = "";
        for(int i = 0; i < n; i++) {
            if(Character.isUpperCase(str.charAt(i))) {
                caps += Character.toLowerCase(str.charAt(i));
            } else {
                caps += Character.toUpperCase(str.charAt(i));
            }
        }
        System.out.println(caps);
    }
}
0