結果

問題 No.163 cAPSlOCK
ユーザー bellbell
提出日時 2021-02-12 00:10:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 535 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-07-18 10:59:31
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,268 KB
testcase_01 AC 101 ms
52,900 KB
testcase_02 AC 116 ms
53,848 KB
testcase_03 AC 126 ms
53,868 KB
testcase_04 AC 129 ms
53,912 KB
testcase_05 AC 115 ms
53,952 KB
testcase_06 AC 112 ms
54,092 KB
testcase_07 AC 137 ms
54,008 KB
testcase_08 AC 128 ms
54,028 KB
testcase_09 AC 126 ms
54,076 KB
testcase_10 AC 121 ms
54,104 KB
testcase_11 AC 116 ms
53,940 KB
testcase_12 AC 120 ms
53,944 KB
testcase_13 AC 127 ms
54,088 KB
testcase_14 AC 125 ms
53,924 KB
testcase_15 AC 126 ms
54,068 KB
testcase_16 AC 127 ms
54,036 KB
testcase_17 AC 108 ms
52,880 KB
testcase_18 AC 120 ms
53,868 KB
testcase_19 AC 108 ms
52,980 KB
testcase_20 AC 106 ms
53,044 KB
testcase_21 AC 115 ms
54,264 KB
testcase_22 AC 118 ms
53,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

        for(int i=0; i<S.length; i++){
            if( S[i].matches( "[a-z]+" ) ){
                result=S[i].toUpperCase();
        System.out.print(result);
            }else if(S[i].matches("[A-Z]")){
                result=S[i].toLowerCase();
        System.out.print(result);

            }
        }
            sc.close();
		}
    }
0