結果

問題 No.163 cAPSlOCK
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 16:09:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 834 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 73,720 KB
実行使用メモリ 37,172 KB
最終ジャッジ日時 2024-11-17 03:47:29
合計ジャッジ時間 5,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,136 KB
testcase_01 AC 54 ms
36,776 KB
testcase_02 AC 53 ms
36,848 KB
testcase_03 AC 55 ms
36,912 KB
testcase_04 AC 54 ms
36,920 KB
testcase_05 AC 55 ms
37,036 KB
testcase_06 AC 53 ms
37,032 KB
testcase_07 AC 55 ms
37,132 KB
testcase_08 AC 55 ms
36,496 KB
testcase_09 AC 56 ms
36,676 KB
testcase_10 AC 53 ms
37,108 KB
testcase_11 AC 54 ms
37,172 KB
testcase_12 AC 55 ms
37,072 KB
testcase_13 AC 54 ms
36,688 KB
testcase_14 AC 55 ms
36,916 KB
testcase_15 AC 53 ms
36,536 KB
testcase_16 AC 55 ms
36,972 KB
testcase_17 AC 54 ms
36,560 KB
testcase_18 AC 53 ms
36,764 KB
testcase_19 AC 55 ms
36,916 KB
testcase_20 AC 56 ms
36,916 KB
testcase_21 AC 53 ms
37,072 KB
testcase_22 AC 54 ms
37,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00163 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));

		try {
			String input = bufferedReader.readLine();


			String ans = toUpLowConverter(input);

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

	static String toUpLowConverter(String input) {
		StringBuilder builder = new StringBuilder();
		for (int i = 0 ; i < input.length() ; i++) {
			if (Character.isUpperCase(input.charAt(i))) {
				builder.append(String.valueOf(input.charAt(i)).toLowerCase());
			} else {
				builder.append(String.valueOf(input.charAt(i)).toUpperCase());
			}
		}
		return builder.toString();
	}
}
0