結果

問題 No.163 cAPSlOCK
ユーザー tentententen
提出日時 2020-12-09 09:18:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-09-19 01:03:12
合計ジャッジ時間 6,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,228 KB
testcase_01 AC 127 ms
41,172 KB
testcase_02 AC 126 ms
41,064 KB
testcase_03 AC 129 ms
41,048 KB
testcase_04 AC 131 ms
40,860 KB
testcase_05 AC 130 ms
40,852 KB
testcase_06 AC 128 ms
41,028 KB
testcase_07 AC 129 ms
40,788 KB
testcase_08 AC 130 ms
41,232 KB
testcase_09 AC 128 ms
41,084 KB
testcase_10 AC 115 ms
39,724 KB
testcase_11 AC 132 ms
40,948 KB
testcase_12 AC 132 ms
41,272 KB
testcase_13 AC 129 ms
41,200 KB
testcase_14 AC 133 ms
41,196 KB
testcase_15 AC 133 ms
41,408 KB
testcase_16 AC 128 ms
41,032 KB
testcase_17 AC 130 ms
41,196 KB
testcase_18 AC 127 ms
41,036 KB
testcase_19 AC 114 ms
39,880 KB
testcase_20 AC 126 ms
41,036 KB
testcase_21 AC 131 ms
40,704 KB
testcase_22 AC 117 ms
39,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        for (int i = 0; i < arr.length; i++) {
            if (arr[i] >= 'a' && arr[i] <= 'z') {
                arr[i] += 'A' - 'a';
            } else {
                arr[i] += 'a' - 'A';
            }
        }
        System.out.println(arr);
    }
}
0