結果

問題 No.163 cAPSlOCK
ユーザー n_gojon_gojo
提出日時 2020-04-09 18:35:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 594 bytes
コンパイル時間 5,635 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-09-13 15:55:03
合計ジャッジ時間 7,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,164 KB
testcase_01 AC 124 ms
41,316 KB
testcase_02 AC 126 ms
41,256 KB
testcase_03 AC 132 ms
41,620 KB
testcase_04 AC 121 ms
40,328 KB
testcase_05 AC 128 ms
41,364 KB
testcase_06 AC 127 ms
41,340 KB
testcase_07 AC 121 ms
41,344 KB
testcase_08 AC 130 ms
41,248 KB
testcase_09 AC 134 ms
41,316 KB
testcase_10 AC 126 ms
41,204 KB
testcase_11 AC 125 ms
41,076 KB
testcase_12 AC 129 ms
41,180 KB
testcase_13 AC 130 ms
41,212 KB
testcase_14 AC 116 ms
40,168 KB
testcase_15 AC 130 ms
41,164 KB
testcase_16 AC 133 ms
41,428 KB
testcase_17 AC 130 ms
41,336 KB
testcase_18 AC 128 ms
41,364 KB
testcase_19 AC 116 ms
40,096 KB
testcase_20 AC 128 ms
41,204 KB
testcase_21 AC 127 ms
41,244 KB
testcase_22 AC 133 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No163 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        String str = sc.next();

        for (int i = 0; i < str.length(); i++) {
            if (Character.isUpperCase(str.charAt(i))) {
                System.out.print(Character.toLowerCase(str.charAt(i)));
            } else {
                System.out.print(Character.toUpperCase(str.charAt(i)));
            }
        }
        System.out.println("");
    }
}
0