結果

問題 No.163 cAPSlOCK
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 15:47:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 74,012 KB
実行使用メモリ 41,892 KB
最終ジャッジ日時 2024-06-27 04:47:56
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,016 KB
testcase_01 AC 123 ms
40,904 KB
testcase_02 AC 121 ms
41,300 KB
testcase_03 AC 135 ms
41,332 KB
testcase_04 AC 134 ms
41,292 KB
testcase_05 AC 124 ms
41,356 KB
testcase_06 AC 123 ms
41,200 KB
testcase_07 AC 131 ms
41,488 KB
testcase_08 AC 134 ms
41,816 KB
testcase_09 AC 137 ms
41,088 KB
testcase_10 AC 134 ms
41,628 KB
testcase_11 AC 129 ms
41,120 KB
testcase_12 AC 133 ms
41,556 KB
testcase_13 AC 133 ms
41,652 KB
testcase_14 AC 139 ms
41,364 KB
testcase_15 AC 132 ms
41,356 KB
testcase_16 AC 136 ms
41,756 KB
testcase_17 AC 132 ms
41,016 KB
testcase_18 AC 128 ms
41,160 KB
testcase_19 AC 127 ms
41,348 KB
testcase_20 AC 126 ms
41,860 KB
testcase_21 AC 130 ms
41,148 KB
testcase_22 AC 144 ms
41,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		//System.out.println("パスワード");
		Scanner scanner = new Scanner(System.in);
		String pw = scanner.next();
		scanner.close();
		String[] pw_1 = new String[pw.length()];
		for(int i = 0; i < pw.length(); i++) {
			String c = pw.substring(i,i+1);
			if( c.matches("[A-Z]{1}")) {
				pw_1[i] = c.toLowerCase();
			}else if(c.matches("[a-z]{1}")) {
				pw_1[i] = c.toUpperCase();
			}else {
				//System.out.println("無効な文字列です");
				//System.exit(1);
			}
		}
		for( int i = 0; i < pw.length(); i++) {
			String s = pw_1[i];
			System.out.print(s);
		}
	}
}
0