結果

問題 No.163 cAPSlOCK
ユーザー hippolover02hippolover02
提出日時 2022-07-18 14:40:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-30 14:28:28
合計ジャッジ時間 5,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,700 KB
testcase_01 AC 123 ms
54,204 KB
testcase_02 AC 113 ms
53,840 KB
testcase_03 AC 120 ms
54,248 KB
testcase_04 AC 115 ms
53,916 KB
testcase_05 AC 122 ms
54,032 KB
testcase_06 AC 126 ms
53,944 KB
testcase_07 AC 131 ms
53,828 KB
testcase_08 AC 125 ms
53,928 KB
testcase_09 AC 122 ms
54,016 KB
testcase_10 AC 129 ms
54,344 KB
testcase_11 AC 132 ms
53,908 KB
testcase_12 AC 125 ms
54,032 KB
testcase_13 AC 126 ms
53,956 KB
testcase_14 AC 113 ms
53,276 KB
testcase_15 AC 109 ms
52,816 KB
testcase_16 AC 117 ms
53,840 KB
testcase_17 AC 113 ms
53,868 KB
testcase_18 AC 121 ms
53,840 KB
testcase_19 AC 126 ms
53,984 KB
testcase_20 AC 118 ms
53,816 KB
testcase_21 AC 120 ms
53,680 KB
testcase_22 AC 129 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

        String plain = sc.nextLine();
        String[] str = plain.split("");

        for (int i=0;i<str.length;i++){
            // 大文字の時
            if(str[i].matches("[A-Z]")){
                str[i] = str[i].toLowerCase();
            }else {
                str[i] = str[i].toUpperCase();
            }
        }
		System.out.println(String.join("", str));
	}
}
0