結果

問題 No.163 cAPSlOCK
ユーザー dazydazy
提出日時 2016-09-02 00:56:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 595 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-11-15 17:09:31
合計ジャッジ時間 6,406 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,984 KB
testcase_01 AC 123 ms
41,288 KB
testcase_02 AC 122 ms
41,012 KB
testcase_03 AC 119 ms
41,136 KB
testcase_04 AC 121 ms
41,288 KB
testcase_05 AC 116 ms
41,048 KB
testcase_06 AC 120 ms
41,252 KB
testcase_07 AC 119 ms
41,192 KB
testcase_08 AC 123 ms
40,976 KB
testcase_09 AC 121 ms
41,312 KB
testcase_10 AC 121 ms
41,268 KB
testcase_11 AC 119 ms
41,432 KB
testcase_12 AC 120 ms
40,868 KB
testcase_13 AC 119 ms
41,200 KB
testcase_14 AC 119 ms
41,472 KB
testcase_15 AC 120 ms
41,000 KB
testcase_16 AC 123 ms
41,320 KB
testcase_17 AC 121 ms
41,460 KB
testcase_18 AC 120 ms
41,360 KB
testcase_19 AC 121 ms
41,584 KB
testcase_20 AC 120 ms
41,444 KB
testcase_21 AC 119 ms
41,424 KB
testcase_22 AC 123 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yukicoder {
    static public void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        StringBuilder S = new StringBuilder();
        S.append(scanner.next());

        if (S.length() < 1 || S.length() > 100) System.exit(1);

        char tmp;
        for (int i = 0; i < S.length(); i++) {
            tmp = S.charAt(i);
            if (Character.isLowerCase(tmp)) tmp = Character.toUpperCase(tmp);
            else tmp = Character.toLowerCase(tmp);
            S.setCharAt(i, tmp);
        }

        System.out.println(S);
    }
}
0