結果

問題 No.163 cAPSlOCK
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-24 14:05:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-09-21 15:10:07
合計ジャッジ時間 6,208 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,116 KB
testcase_01 AC 107 ms
41,020 KB
testcase_02 AC 107 ms
40,840 KB
testcase_03 AC 119 ms
40,968 KB
testcase_04 AC 122 ms
41,100 KB
testcase_05 AC 117 ms
41,316 KB
testcase_06 AC 112 ms
41,080 KB
testcase_07 AC 118 ms
41,596 KB
testcase_08 AC 123 ms
41,336 KB
testcase_09 AC 120 ms
41,320 KB
testcase_10 AC 114 ms
41,148 KB
testcase_11 AC 100 ms
40,096 KB
testcase_12 AC 122 ms
41,328 KB
testcase_13 AC 118 ms
40,976 KB
testcase_14 AC 115 ms
40,132 KB
testcase_15 AC 123 ms
41,096 KB
testcase_16 AC 124 ms
41,176 KB
testcase_17 AC 115 ms
41,336 KB
testcase_18 AC 116 ms
41,056 KB
testcase_19 AC 105 ms
40,444 KB
testcase_20 AC 105 ms
39,744 KB
testcase_21 AC 109 ms
40,892 KB
testcase_22 AC 103 ms
39,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next();
		
		char[] charS = s.toCharArray();
		
		for(int i = 0; i < s.length(); i++) {
			if(String.valueOf(charS[i]).equals(String.valueOf(charS[i]).toUpperCase())) {
				charS[i] = String.valueOf(charS[i]).toLowerCase().charAt(0);
			} else {
				charS[i] = String.valueOf(charS[i]).toUpperCase().charAt(0);
			}
		}
		
		for(int i = 0; i < s.length(); i++) {
			System.out.print(charS[i]);
		}
		
		System.out.println();
	}
}
0