結果

問題 No.163 cAPSlOCK
ユーザー kazapyon27kazapyon27
提出日時 2017-05-05 10:38:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 80,080 KB
実行使用メモリ 37,256 KB
最終ジャッジ日時 2024-09-14 08:36:55
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,724 KB
testcase_01 AC 56 ms
37,012 KB
testcase_02 AC 56 ms
37,176 KB
testcase_03 AC 57 ms
36,592 KB
testcase_04 AC 57 ms
37,152 KB
testcase_05 AC 57 ms
37,252 KB
testcase_06 AC 57 ms
37,256 KB
testcase_07 AC 57 ms
37,024 KB
testcase_08 AC 57 ms
37,076 KB
testcase_09 AC 57 ms
36,880 KB
testcase_10 AC 56 ms
36,928 KB
testcase_11 AC 57 ms
36,588 KB
testcase_12 AC 55 ms
37,100 KB
testcase_13 AC 55 ms
37,060 KB
testcase_14 AC 56 ms
37,024 KB
testcase_15 AC 57 ms
37,176 KB
testcase_16 AC 57 ms
37,008 KB
testcase_17 AC 57 ms
36,848 KB
testcase_18 AC 56 ms
36,992 KB
testcase_19 AC 57 ms
36,592 KB
testcase_20 AC 55 ms
36,908 KB
testcase_21 AC 57 ms
36,908 KB
testcase_22 AC 58 ms
36,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.163 cAPSlOCK*/
import java.io.*;
public class No163 {
	public static void main(String[] args) {
		String password,w_password=new String(),moji;
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			password=input.readLine();
			for(int i=0;i<password.length();i++){
				moji=password.substring(i, i+1);
				if(moji.codePointAt(0)>=65 &&moji.codePointAt(0)<=90){
					w_password+=moji.toLowerCase();
				}else if(moji.codePointAt(0)>=97 &&moji.codePointAt(0)<=122){
					w_password+=moji.toUpperCase();
				}
			}
			System.out.println(w_password);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0