結果

問題 No.163 cAPSlOCK
ユーザー sasakkisasakki
提出日時 2016-04-14 16:20:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 81,672 KB
実行使用メモリ 41,000 KB
最終ジャッジ日時 2024-10-04 08:41:58
合計ジャッジ時間 4,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
37,632 KB
testcase_01 AC 66 ms
38,008 KB
testcase_02 AC 67 ms
37,652 KB
testcase_03 AC 69 ms
41,000 KB
testcase_04 AC 69 ms
38,156 KB
testcase_05 AC 66 ms
37,608 KB
testcase_06 AC 79 ms
37,916 KB
testcase_07 AC 67 ms
38,020 KB
testcase_08 AC 71 ms
37,884 KB
testcase_09 AC 69 ms
38,224 KB
testcase_10 AC 68 ms
37,628 KB
testcase_11 AC 68 ms
37,488 KB
testcase_12 AC 69 ms
38,156 KB
testcase_13 AC 70 ms
38,144 KB
testcase_14 AC 72 ms
37,944 KB
testcase_15 AC 67 ms
37,628 KB
testcase_16 AC 70 ms
37,924 KB
testcase_17 AC 73 ms
39,476 KB
testcase_18 AC 67 ms
37,788 KB
testcase_19 AC 68 ms
38,016 KB
testcase_20 AC 65 ms
37,940 KB
testcase_21 AC 75 ms
37,868 KB
testcase_22 AC 78 ms
38,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Main{
	public static void main(String args[]) throws IOException{
		DataInputStream d = new DataInputStream(System.in);

		String str = d.readLine();
		String ans = "";

		for(int i = 0; i < str.length(); i++){
			if( (int)'a' <= (int) str.charAt(i) && (int) str.charAt(i) <= (int)'z' ){
				ans += (char)(str.charAt(i) - 32);
			}
			else{
				ans += (char)(str.charAt(i) + 32);
			}

		}

		System.out.println(ans);

	}
}
0