結果

問題 No.163 cAPSlOCK
ユーザー GrenacheGrenache
提出日時 2015-06-30 19:13:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 2,820 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-07-07 21:29:19
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,832 KB
testcase_01 AC 88 ms
41,188 KB
testcase_02 AC 94 ms
41,188 KB
testcase_03 AC 107 ms
40,836 KB
testcase_04 AC 107 ms
41,380 KB
testcase_05 AC 103 ms
39,932 KB
testcase_06 AC 103 ms
41,248 KB
testcase_07 AC 106 ms
41,000 KB
testcase_08 AC 94 ms
41,432 KB
testcase_09 AC 105 ms
41,188 KB
testcase_10 AC 102 ms
41,000 KB
testcase_11 AC 101 ms
41,248 KB
testcase_12 AC 97 ms
41,432 KB
testcase_13 AC 95 ms
41,452 KB
testcase_14 AC 106 ms
40,004 KB
testcase_15 AC 98 ms
40,972 KB
testcase_16 AC 109 ms
41,716 KB
testcase_17 AC 93 ms
41,116 KB
testcase_18 AC 101 ms
41,096 KB
testcase_19 AC 102 ms
41,112 KB
testcase_20 AC 104 ms
41,236 KB
testcase_21 AC 101 ms
41,252 KB
testcase_22 AC 99 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder163 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        char[] passwd = sc.next().toCharArray();

        for (int i = 0; i < passwd.length; i++) {
        	if (passwd[i] >= 'A' && passwd[i] <= 'Z') {
        		System.out.print((char)(passwd[i] - 'A' + 'a'));
        	} else {
        		System.out.print((char)(passwd[i] - 'a' + 'A'));
        	}
        }
        
        System.out.println("");
        
        sc.close();
    }
}

0