結果

問題 No.163 cAPSlOCK
ユーザー S1hoS1ho
提出日時 2017-02-19 14:21:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 3,165 ms
コンパイル使用メモリ 75,204 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-06-09 14:21:10
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
52,812 KB
testcase_01 AC 112 ms
54,080 KB
testcase_02 AC 114 ms
53,712 KB
testcase_03 AC 110 ms
53,960 KB
testcase_04 AC 102 ms
52,764 KB
testcase_05 AC 114 ms
54,232 KB
testcase_06 AC 109 ms
54,152 KB
testcase_07 AC 105 ms
52,844 KB
testcase_08 AC 120 ms
53,848 KB
testcase_09 AC 120 ms
54,052 KB
testcase_10 AC 101 ms
52,916 KB
testcase_11 AC 104 ms
54,112 KB
testcase_12 AC 109 ms
53,904 KB
testcase_13 AC 115 ms
53,844 KB
testcase_14 AC 116 ms
53,768 KB
testcase_15 AC 105 ms
53,948 KB
testcase_16 AC 114 ms
54,040 KB
testcase_17 AC 113 ms
53,744 KB
testcase_18 AC 114 ms
53,940 KB
testcase_19 AC 118 ms
53,732 KB
testcase_20 AC 116 ms
53,868 KB
testcase_21 AC 120 ms
53,980 KB
testcase_22 AC 117 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class CapsLock {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        StringBuilder str = new StringBuilder();
        str.append(scanner.next());
      
        char c;
        
        for(int i=0;i<str.length();i++){
            
            c = str.charAt(i);
            
            if(Character.isUpperCase(c)){
                str.setCharAt(i, Character.toLowerCase(c));
            }else{
                str.setCharAt(i, Character.toUpperCase(c));
            }
            
        }
        
        System.out.println(str);
        
    }
    
}
0