結果

問題 No.163 cAPSlOCK
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 14:22:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 76,056 KB
実行使用メモリ 42,636 KB
最終ジャッジ日時 2024-09-13 11:24:14
合計ジャッジ時間 6,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,208 KB
testcase_01 AC 159 ms
42,208 KB
testcase_02 AC 159 ms
42,348 KB
testcase_03 AC 159 ms
42,396 KB
testcase_04 AC 158 ms
42,192 KB
testcase_05 AC 155 ms
42,600 KB
testcase_06 AC 155 ms
42,204 KB
testcase_07 AC 159 ms
42,336 KB
testcase_08 AC 157 ms
42,556 KB
testcase_09 AC 155 ms
42,464 KB
testcase_10 AC 155 ms
42,344 KB
testcase_11 AC 154 ms
42,200 KB
testcase_12 AC 156 ms
42,120 KB
testcase_13 AC 160 ms
42,512 KB
testcase_14 AC 158 ms
42,256 KB
testcase_15 AC 157 ms
42,440 KB
testcase_16 AC 157 ms
42,556 KB
testcase_17 AC 155 ms
42,068 KB
testcase_18 AC 156 ms
42,256 KB
testcase_19 AC 156 ms
42,340 KB
testcase_20 AC 157 ms
42,636 KB
testcase_21 AC 157 ms
42,080 KB
testcase_22 AC 159 ms
42,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		String ans = "";
		for (int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			if (Character.isUpperCase(c)) {
				ans += (char)(c + 32);
			}
			else {
				ans += (char)(c - 32);
			}
		}
		System.out.println(ans);
		
	}
}
0