結果

問題 No.163 cAPSlOCK
ユーザー gomagoma
提出日時 2017-09-19 20:56:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 404 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-11-08 05:45:44
合計ジャッジ時間 5,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,368 KB
testcase_01 AC 122 ms
41,300 KB
testcase_02 AC 120 ms
41,080 KB
testcase_03 AC 130 ms
41,028 KB
testcase_04 AC 125 ms
41,416 KB
testcase_05 AC 120 ms
40,884 KB
testcase_06 AC 120 ms
41,048 KB
testcase_07 AC 112 ms
39,792 KB
testcase_08 AC 130 ms
41,296 KB
testcase_09 AC 126 ms
41,128 KB
testcase_10 AC 112 ms
40,200 KB
testcase_11 AC 110 ms
39,976 KB
testcase_12 AC 128 ms
41,100 KB
testcase_13 AC 120 ms
39,860 KB
testcase_14 AC 130 ms
41,124 KB
testcase_15 AC 131 ms
40,984 KB
testcase_16 AC 132 ms
41,312 KB
testcase_17 AC 127 ms
40,808 KB
testcase_18 AC 123 ms
41,220 KB
testcase_19 AC 110 ms
40,264 KB
testcase_20 AC 113 ms
39,704 KB
testcase_21 AC 126 ms
41,072 KB
testcase_22 AC 119 ms
39,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		char[] ans = str.toCharArray();

		for (int i = 0; i < str.length(); i++) {
			if (Character.isUpperCase(ans[i])) {
				System.out.print(Character.toLowerCase(ans[i]));
			} else {
				System.out.print(Character.toUpperCase(ans[i]));
			}
		}
	}
}
0