結果

問題 No.163 cAPSlOCK
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-13 23:22:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 76,668 KB
実行使用メモリ 44,180 KB
最終ジャッジ日時 2024-07-01 07:32:22
合計ジャッジ時間 7,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,572 KB
testcase_01 AC 141 ms
42,356 KB
testcase_02 AC 157 ms
42,448 KB
testcase_03 AC 156 ms
42,596 KB
testcase_04 AC 158 ms
42,400 KB
testcase_05 AC 157 ms
42,584 KB
testcase_06 AC 154 ms
42,320 KB
testcase_07 AC 148 ms
42,148 KB
testcase_08 AC 148 ms
41,776 KB
testcase_09 AC 159 ms
44,180 KB
testcase_10 AC 155 ms
42,472 KB
testcase_11 AC 157 ms
42,452 KB
testcase_12 AC 158 ms
42,456 KB
testcase_13 AC 160 ms
42,496 KB
testcase_14 AC 157 ms
42,312 KB
testcase_15 AC 159 ms
42,432 KB
testcase_16 AC 160 ms
42,492 KB
testcase_17 AC 159 ms
42,260 KB
testcase_18 AC 160 ms
42,124 KB
testcase_19 AC 158 ms
42,444 KB
testcase_20 AC 157 ms
42,500 KB
testcase_21 AC 159 ms
42,272 KB
testcase_22 AC 160 ms
42,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Y163{
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        String s=sc.next();
        String ans="";
        for(int i=0;i<s.length();i++){
            char ch=s.charAt(i);
            if(Character.isLowerCase(ch)){
                ans+=Character.toUpperCase(ch);
            }else{
                ans+=Character.toLowerCase(ch);
            }
        }
        System.out.println(ans);
    }
}
0