結果

問題 No.163 cAPSlOCK
ユーザー koukonkokoukonko
提出日時 2015-12-13 02:45:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 37,448 KB
最終ジャッジ日時 2024-09-15 11:00:21
合計ジャッジ時間 4,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,200 KB
testcase_01 AC 57 ms
36,772 KB
testcase_02 AC 56 ms
36,624 KB
testcase_03 AC 59 ms
37,044 KB
testcase_04 AC 58 ms
37,064 KB
testcase_05 AC 57 ms
37,200 KB
testcase_06 AC 57 ms
36,916 KB
testcase_07 AC 57 ms
36,900 KB
testcase_08 AC 58 ms
37,108 KB
testcase_09 AC 57 ms
36,972 KB
testcase_10 AC 59 ms
37,356 KB
testcase_11 AC 59 ms
36,884 KB
testcase_12 AC 59 ms
37,188 KB
testcase_13 AC 58 ms
36,664 KB
testcase_14 AC 59 ms
37,116 KB
testcase_15 AC 58 ms
37,132 KB
testcase_16 AC 58 ms
37,044 KB
testcase_17 AC 58 ms
37,120 KB
testcase_18 AC 56 ms
36,884 KB
testcase_19 AC 57 ms
37,064 KB
testcase_20 AC 58 ms
37,448 KB
testcase_21 AC 57 ms
37,128 KB
testcase_22 AC 57 ms
37,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			String line = read.readLine();
			String ans = "";

			for (int i = 0; i < line.length(); ++i) {
				if (line.charAt(i) <= 0x5A) {
					ans += (line.charAt(i) + "").toLowerCase();
				} else {
					ans += (line.charAt(i) + "").toUpperCase();
				}
			}

			System.out.println(ans);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0