結果

問題 No.163 cAPSlOCK
ユーザー DemocoDemoco
提出日時 2015-05-02 13:25:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 76,668 KB
実行使用メモリ 42,520 KB
最終ジャッジ日時 2024-07-05 17:27:40
合計ジャッジ時間 6,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
42,408 KB
testcase_01 AC 155 ms
42,520 KB
testcase_02 AC 150 ms
42,496 KB
testcase_03 AC 150 ms
42,144 KB
testcase_04 AC 152 ms
42,064 KB
testcase_05 AC 151 ms
42,204 KB
testcase_06 AC 154 ms
42,360 KB
testcase_07 AC 156 ms
42,284 KB
testcase_08 AC 154 ms
42,032 KB
testcase_09 AC 151 ms
42,100 KB
testcase_10 AC 135 ms
42,028 KB
testcase_11 AC 147 ms
42,312 KB
testcase_12 AC 148 ms
42,224 KB
testcase_13 AC 147 ms
42,048 KB
testcase_14 AC 152 ms
42,396 KB
testcase_15 AC 147 ms
42,192 KB
testcase_16 AC 157 ms
42,184 KB
testcase_17 AC 149 ms
42,172 KB
testcase_18 AC 151 ms
42,172 KB
testcase_19 AC 137 ms
41,872 KB
testcase_20 AC 152 ms
42,256 KB
testcase_21 AC 149 ms
42,248 KB
testcase_22 AC 149 ms
42,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Yukico163 {
	public static void main(String[] args) {
		Scanner stdio = new Scanner(System.in);
		String s = stdio.next();
		String ans ="";
		for(int i=0; i<s.length(); i++) {
			if(Character.isUpperCase(s.charAt(i))) {
				ans =ans+Character.toLowerCase(s.charAt(i));
			} else {
				ans =ans+Character.toUpperCase(s.charAt(i));
			}
		}
		System.out.println(ans);
	}
}
0