結果

問題 No.163 cAPSlOCK
ユーザー eagleeagle
提出日時 2022-05-26 15:02:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 75,864 KB
実行使用メモリ 42,704 KB
最終ジャッジ日時 2024-09-20 15:00:23
合計ジャッジ時間 6,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
42,336 KB
testcase_01 AC 130 ms
41,548 KB
testcase_02 AC 131 ms
41,556 KB
testcase_03 AC 145 ms
42,704 KB
testcase_04 AC 138 ms
41,556 KB
testcase_05 AC 131 ms
42,100 KB
testcase_06 AC 150 ms
42,076 KB
testcase_07 AC 145 ms
42,044 KB
testcase_08 AC 141 ms
41,996 KB
testcase_09 AC 151 ms
42,156 KB
testcase_10 AC 150 ms
42,208 KB
testcase_11 AC 140 ms
42,208 KB
testcase_12 AC 139 ms
42,196 KB
testcase_13 AC 160 ms
42,208 KB
testcase_14 AC 148 ms
42,336 KB
testcase_15 AC 133 ms
42,080 KB
testcase_16 AC 146 ms
42,044 KB
testcase_17 AC 145 ms
42,316 KB
testcase_18 AC 148 ms
42,460 KB
testcase_19 AC 146 ms
42,064 KB
testcase_20 AC 135 ms
41,872 KB
testcase_21 AC 146 ms
42,080 KB
testcase_22 AC 133 ms
41,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		String ans = "";
		for(int i = 0; i < s.length(); i++) {
			//文字を取り出す
			char c = s.charAt(i);
			//取り出した文字田が大文字なら
			if(Character.isUpperCase(c)) {
				c = Character.toLowerCase(c);
			} else {
				c = Character.toUpperCase(c);
			}
			ans += c;
		}
		System.out.println(ans);
	}
}
0