結果

問題 No.163 cAPSlOCK
ユーザー r.suzukir.suzuki
提出日時 2015-12-08 15:36:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 75,808 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-09-14 20:09:08
合計ジャッジ時間 7,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,068 KB
testcase_01 AC 122 ms
41,144 KB
testcase_02 AC 125 ms
40,800 KB
testcase_03 AC 135 ms
40,840 KB
testcase_04 AC 137 ms
41,304 KB
testcase_05 AC 127 ms
40,968 KB
testcase_06 AC 127 ms
41,000 KB
testcase_07 AC 133 ms
41,092 KB
testcase_08 AC 133 ms
40,960 KB
testcase_09 AC 131 ms
40,964 KB
testcase_10 AC 114 ms
40,088 KB
testcase_11 AC 132 ms
41,004 KB
testcase_12 AC 135 ms
40,760 KB
testcase_13 AC 132 ms
41,016 KB
testcase_14 AC 132 ms
41,028 KB
testcase_15 AC 131 ms
40,972 KB
testcase_16 AC 136 ms
41,196 KB
testcase_17 AC 133 ms
41,020 KB
testcase_18 AC 116 ms
39,792 KB
testcase_19 AC 128 ms
40,904 KB
testcase_20 AC 128 ms
40,892 KB
testcase_21 AC 124 ms
41,028 KB
testcase_22 AC 131 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_163 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String password = sc.next();
		char[] pieceOfPassword = password.toCharArray();
		
		for(char c:pieceOfPassword){
			char cLow = Character.toLowerCase(c);
			if(c == cLow){
				System.out.print(Character.toUpperCase(c));
			}
			else{
				System.out.print(Character.toLowerCase(c));
			}
		}
		sc.close();
	}

}
0