結果

問題 No.163 cAPSlOCK
ユーザー yu_017yu_017
提出日時 2019-01-14 09:57:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 399 bytes
コンパイル時間 3,608 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-06-10 22:00:58
合計ジャッジ時間 6,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,020 KB
testcase_01 AC 105 ms
40,980 KB
testcase_02 AC 103 ms
41,132 KB
testcase_03 AC 106 ms
41,080 KB
testcase_04 AC 103 ms
41,128 KB
testcase_05 AC 92 ms
39,640 KB
testcase_06 AC 105 ms
41,088 KB
testcase_07 AC 98 ms
40,540 KB
testcase_08 AC 105 ms
41,240 KB
testcase_09 AC 96 ms
40,400 KB
testcase_10 AC 98 ms
40,000 KB
testcase_11 AC 106 ms
41,312 KB
testcase_12 AC 95 ms
40,244 KB
testcase_13 AC 99 ms
40,012 KB
testcase_14 AC 112 ms
41,188 KB
testcase_15 AC 108 ms
41,136 KB
testcase_16 AC 94 ms
40,272 KB
testcase_17 AC 111 ms
41,128 KB
testcase_18 AC 109 ms
41,320 KB
testcase_19 AC 106 ms
41,172 KB
testcase_20 AC 92 ms
39,804 KB
testcase_21 AC 91 ms
39,792 KB
testcase_22 AC 101 ms
39,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000163 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String pass = sc.nextLine();
		sc.close();
		StringBuilder r = new StringBuilder();
		for(char c:pass.toCharArray()) {
			if(c<'a') {
				r.append((char)(c-'A'+'a'));
			}else {
				r.append((char)(c-'a'+'A'));
			}
		}
		System.out.println(r.toString());
		
	}

}
0