結果

問題 No.163 cAPSlOCK
ユーザー bigbear90560bigbear90560
提出日時 2015-07-03 00:37:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 3,183 ms
コンパイル使用メモリ 78,664 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-07 22:33:22
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,228 KB
testcase_01 AC 98 ms
41,216 KB
testcase_02 AC 98 ms
40,976 KB
testcase_03 AC 99 ms
41,108 KB
testcase_04 AC 99 ms
41,112 KB
testcase_05 AC 111 ms
41,028 KB
testcase_06 AC 109 ms
41,456 KB
testcase_07 AC 94 ms
41,336 KB
testcase_08 AC 110 ms
41,472 KB
testcase_09 AC 100 ms
41,272 KB
testcase_10 AC 112 ms
41,076 KB
testcase_11 AC 110 ms
41,108 KB
testcase_12 AC 98 ms
41,096 KB
testcase_13 AC 98 ms
41,280 KB
testcase_14 AC 104 ms
41,336 KB
testcase_15 AC 107 ms
41,356 KB
testcase_16 AC 109 ms
41,196 KB
testcase_17 AC 97 ms
41,196 KB
testcase_18 AC 103 ms
41,304 KB
testcase_19 AC 112 ms
41,380 KB
testcase_20 AC 108 ms
41,224 KB
testcase_21 AC 99 ms
41,204 KB
testcase_22 AC 97 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * No.163 cAPSlOCK
 */
public class UToLOrLtoU {

	public static void main(String[] args) {

        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        // 文字列をchar型配列に分解
        char[] ca = s.toCharArray();
        StringBuilder sb = new StringBuilder();
        
        for (char c : ca) {
        	sb.append(Character.isUpperCase(c) ? Character.toLowerCase(c) : Character.toUpperCase(c));
        }
        System.out.println(sb.toString());
	}

}
0