結果

問題 No.163 cAPSlOCK
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 08:19:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 3,526 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-07-06 05:59:19
合計ジャッジ時間 7,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,136 KB
testcase_01 AC 122 ms
40,780 KB
testcase_02 AC 120 ms
40,840 KB
testcase_03 AC 129 ms
40,988 KB
testcase_04 AC 132 ms
41,088 KB
testcase_05 AC 110 ms
40,224 KB
testcase_06 AC 124 ms
41,252 KB
testcase_07 AC 129 ms
40,928 KB
testcase_08 AC 131 ms
41,052 KB
testcase_09 AC 128 ms
41,256 KB
testcase_10 AC 126 ms
40,904 KB
testcase_11 AC 124 ms
41,472 KB
testcase_12 AC 129 ms
41,444 KB
testcase_13 AC 129 ms
41,060 KB
testcase_14 AC 133 ms
40,988 KB
testcase_15 AC 129 ms
40,772 KB
testcase_16 AC 131 ms
40,936 KB
testcase_17 AC 127 ms
41,568 KB
testcase_18 AC 125 ms
41,004 KB
testcase_19 AC 124 ms
41,340 KB
testcase_20 AC 122 ms
40,960 KB
testcase_21 AC 123 ms
40,884 KB
testcase_22 AC 131 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No163 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		String passward = sc.next();
		
		for(int i = 0;i < passward.length();i++) {
			if(Character.isUpperCase(passward.charAt(i))) {
				System.out.print(Character.toLowerCase(passward.charAt(i)));
			}else {
				System.out.print(Character.toUpperCase(passward.charAt(i)));
			}
		}
		System.out.println();
	}
}
0