結果

問題 No.163 cAPSlOCK
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:10:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 3,664 ms
コンパイル使用メモリ 76,096 KB
実行使用メモリ 55,060 KB
最終ジャッジ日時 2024-11-15 22:34:22
合計ジャッジ時間 8,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,872 KB
testcase_01 AC 159 ms
54,920 KB
testcase_02 AC 160 ms
54,748 KB
testcase_03 AC 158 ms
54,980 KB
testcase_04 AC 142 ms
54,564 KB
testcase_05 AC 153 ms
54,764 KB
testcase_06 AC 155 ms
55,012 KB
testcase_07 AC 157 ms
54,884 KB
testcase_08 AC 159 ms
54,904 KB
testcase_09 AC 163 ms
55,008 KB
testcase_10 AC 156 ms
54,776 KB
testcase_11 AC 161 ms
54,520 KB
testcase_12 AC 170 ms
54,976 KB
testcase_13 AC 164 ms
54,908 KB
testcase_14 AC 169 ms
54,820 KB
testcase_15 AC 156 ms
55,060 KB
testcase_16 AC 158 ms
54,816 KB
testcase_17 AC 156 ms
54,904 KB
testcase_18 AC 154 ms
54,856 KB
testcase_19 AC 154 ms
54,896 KB
testcase_20 AC 157 ms
54,924 KB
testcase_21 AC 165 ms
54,800 KB
testcase_22 AC 155 ms
54,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		String s = sc.next(), ans = "";
		for(int i = 0; i < s.length(); i++){
			if(s.charAt(i) >= 'a'){
				ans += (char)(s.charAt(i)-'a'+'A');
			} else {
				ans += (char)(s.charAt(i)-'A'+'a');
			}
		}
		System.out.println(ans);
	}
}
0