結果

問題 No.163 cAPSlOCK
ユーザー 4A9GN4A9GN
提出日時 2016-07-21 00:25:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 880 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 75,312 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-10-15 20:08:17
合計ジャッジ時間 5,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,064 KB
testcase_01 AC 101 ms
39,556 KB
testcase_02 AC 98 ms
39,644 KB
testcase_03 AC 122 ms
41,024 KB
testcase_04 AC 124 ms
41,368 KB
testcase_05 AC 115 ms
40,876 KB
testcase_06 AC 118 ms
41,004 KB
testcase_07 AC 127 ms
41,176 KB
testcase_08 AC 114 ms
40,260 KB
testcase_09 AC 115 ms
40,728 KB
testcase_10 AC 117 ms
39,780 KB
testcase_11 AC 102 ms
40,088 KB
testcase_12 AC 117 ms
41,192 KB
testcase_13 AC 120 ms
40,992 KB
testcase_14 AC 123 ms
40,992 KB
testcase_15 AC 126 ms
41,184 KB
testcase_16 AC 119 ms
39,988 KB
testcase_17 AC 111 ms
39,964 KB
testcase_18 AC 121 ms
40,932 KB
testcase_19 AC 116 ms
40,932 KB
testcase_20 AC 119 ms
41,240 KB
testcase_21 AC 113 ms
40,804 KB
testcase_22 AC 121 ms
40,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.io.*;
import java.util.ArrayList;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String str = sc.next();
        ArrayList<Character> stoc = new ArrayList<Character>();
        int i = 0;
        for (Character c : str.toCharArray()){
            stoc.add(i, c);
            i++;
        }
        for (i = 0; i < stoc.size(); i++) {
            Character temp = stoc.get(i);
            if (!((Character.toUpperCase(temp)) != stoc.get(i)))
                stoc.set(i, Character.toLowerCase(temp));
            else if (!((Character.toLowerCase(temp)) != stoc.get(i)))
                stoc.set(i, Character.toUpperCase(temp));
        }
        for (i = 0; i < stoc.size(); i++)
            System.out.printf("%c", stoc.get(i));
        System.out.printf("\n");
    }
}
0