結果

問題 No.163 cAPSlOCK
ユーザー jonki324jonki324
提出日時 2018-06-03 16:02:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-06-30 09:23:19
合計ジャッジ時間 5,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,264 KB
testcase_01 AC 121 ms
41,300 KB
testcase_02 AC 109 ms
41,268 KB
testcase_03 AC 110 ms
41,344 KB
testcase_04 AC 125 ms
41,264 KB
testcase_05 AC 125 ms
41,232 KB
testcase_06 AC 124 ms
41,180 KB
testcase_07 AC 125 ms
41,152 KB
testcase_08 AC 114 ms
40,156 KB
testcase_09 AC 121 ms
41,012 KB
testcase_10 AC 123 ms
41,276 KB
testcase_11 AC 123 ms
41,068 KB
testcase_12 AC 123 ms
41,136 KB
testcase_13 AC 123 ms
41,024 KB
testcase_14 AC 122 ms
41,232 KB
testcase_15 AC 123 ms
40,992 KB
testcase_16 AC 127 ms
41,356 KB
testcase_17 AC 115 ms
40,240 KB
testcase_18 AC 122 ms
41,212 KB
testcase_19 AC 125 ms
41,180 KB
testcase_20 AC 123 ms
41,024 KB
testcase_21 AC 124 ms
41,524 KB
testcase_22 AC 112 ms
40,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String s = scan.next();
        char[] c = s.toCharArray();
        for (int i = 0; i < c.length; i++) {
            if (Character.isLowerCase(c[i])) {
                c[i] = Character.toUpperCase(c[i]);
            } else {
                c[i] = Character.toLowerCase(c[i]);
            }
        }
        System.out.println(new String(c));
        scan.close();
    }
}
0