結果

問題 No.163 cAPSlOCK
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 16:09:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 834 bytes
コンパイル時間 3,636 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 37,020 KB
最終ジャッジ日時 2024-04-28 12:20:52
合計ジャッジ時間 4,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,896 KB
testcase_01 AC 44 ms
37,008 KB
testcase_02 AC 43 ms
37,020 KB
testcase_03 AC 46 ms
37,000 KB
testcase_04 AC 43 ms
36,768 KB
testcase_05 AC 45 ms
36,520 KB
testcase_06 AC 47 ms
36,860 KB
testcase_07 AC 45 ms
36,700 KB
testcase_08 AC 46 ms
36,668 KB
testcase_09 AC 44 ms
37,008 KB
testcase_10 AC 44 ms
36,588 KB
testcase_11 AC 43 ms
36,544 KB
testcase_12 AC 43 ms
36,876 KB
testcase_13 AC 44 ms
36,868 KB
testcase_14 AC 45 ms
36,868 KB
testcase_15 AC 46 ms
36,744 KB
testcase_16 AC 44 ms
36,540 KB
testcase_17 AC 46 ms
36,828 KB
testcase_18 AC 46 ms
36,868 KB
testcase_19 AC 45 ms
36,596 KB
testcase_20 AC 43 ms
37,020 KB
testcase_21 AC 46 ms
36,988 KB
testcase_22 AC 44 ms
37,008 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