結果

問題 No.163 cAPSlOCK
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-20 19:36:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 803 bytes
コンパイル時間 3,144 ms
コンパイル使用メモリ 85,368 KB
実行使用メモリ 36,960 KB
最終ジャッジ日時 2024-07-04 18:41:14
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,560 KB
testcase_01 AC 46 ms
36,776 KB
testcase_02 AC 44 ms
36,824 KB
testcase_03 AC 49 ms
36,904 KB
testcase_04 AC 48 ms
36,576 KB
testcase_05 AC 46 ms
36,936 KB
testcase_06 AC 45 ms
36,792 KB
testcase_07 AC 45 ms
36,944 KB
testcase_08 AC 51 ms
36,448 KB
testcase_09 AC 49 ms
36,760 KB
testcase_10 AC 48 ms
36,844 KB
testcase_11 AC 48 ms
36,960 KB
testcase_12 AC 50 ms
36,544 KB
testcase_13 AC 51 ms
36,748 KB
testcase_14 AC 48 ms
36,780 KB
testcase_15 AC 46 ms
36,848 KB
testcase_16 AC 47 ms
36,884 KB
testcase_17 AC 45 ms
36,936 KB
testcase_18 AC 44 ms
36,672 KB
testcase_19 AC 44 ms
36,440 KB
testcase_20 AC 43 ms
36,556 KB
testcase_21 AC 46 ms
36,776 KB
testcase_22 AC 47 ms
36,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No163 {
    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            String S = br.readLine();
            char[] SCharArray = S.toCharArray();

            for (int i = 0; i < SCharArray.length; i++) {
                if ('a' <= SCharArray[i] && SCharArray[i] <= 'z') {
                    System.out.print((char) (SCharArray[i] - 32));
                } else {
                    System.out.print((char) (SCharArray[i] + 32));
                }
            }
            System.out.println();

        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0