結果

問題 No.163 cAPSlOCK
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 10:31:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-07-04 03:21:00
合計ジャッジ時間 5,446 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,980 KB
testcase_01 AC 91 ms
39,612 KB
testcase_02 AC 94 ms
39,772 KB
testcase_03 AC 107 ms
41,320 KB
testcase_04 AC 114 ms
41,040 KB
testcase_05 AC 109 ms
40,856 KB
testcase_06 AC 97 ms
40,092 KB
testcase_07 AC 101 ms
40,164 KB
testcase_08 AC 115 ms
41,080 KB
testcase_09 AC 121 ms
41,188 KB
testcase_10 AC 119 ms
40,976 KB
testcase_11 AC 124 ms
41,288 KB
testcase_12 AC 119 ms
41,176 KB
testcase_13 AC 114 ms
41,244 KB
testcase_14 AC 96 ms
39,932 KB
testcase_15 AC 116 ms
41,376 KB
testcase_16 AC 113 ms
41,416 KB
testcase_17 AC 118 ms
40,940 KB
testcase_18 AC 117 ms
40,820 KB
testcase_19 AC 98 ms
40,124 KB
testcase_20 AC 103 ms
40,672 KB
testcase_21 AC 106 ms
40,912 KB
testcase_22 AC 118 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       String p = koko.next();
       char[] hai = p.toCharArray();
       for(int i=0; i<hai.length; i++){
           if(Character.isUpperCase(hai[i])){
               hai[i] = Character.toLowerCase(hai[i]);
           }else{
               hai[i] = Character.toUpperCase(hai[i]);
           }
       }
       System.out.println(String.valueOf(hai));
    }
}
0