結果

問題 No.841 8/32
ユーザー TomoyaTomoya
提出日時 2019-06-28 21:27:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 3,515 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 41,132 KB
最終ジャッジ日時 2024-07-02 04:21:47
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,896 KB
testcase_01 AC 113 ms
40,192 KB
testcase_02 AC 127 ms
41,004 KB
testcase_03 AC 123 ms
40,756 KB
testcase_04 AC 123 ms
41,024 KB
testcase_05 AC 123 ms
40,896 KB
testcase_06 AC 126 ms
40,800 KB
testcase_07 AC 126 ms
40,720 KB
testcase_08 AC 125 ms
40,696 KB
testcase_09 AC 111 ms
40,064 KB
testcase_10 AC 127 ms
41,132 KB
testcase_11 AC 123 ms
40,600 KB
testcase_12 AC 124 ms
40,924 KB
testcase_13 AC 126 ms
41,052 KB
testcase_14 AC 111 ms
40,056 KB
testcase_15 AC 126 ms
40,808 KB
testcase_16 AC 123 ms
40,844 KB
testcase_17 AC 123 ms
40,628 KB
testcase_18 AC 124 ms
41,008 KB
testcase_19 AC 110 ms
39,672 KB
testcase_20 AC 122 ms
40,924 KB
testcase_21 AC 124 ms
40,780 KB
testcase_22 AC 127 ms
40,960 KB
testcase_23 AC 124 ms
40,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class App {

    static boolean isTrue(String s) {
        String s1 = "Sun";
        String s2 = "Sat";
        return(s.equals(s1) || s.equals(s2));
    }
    public static void main(String[] args) {
        //System.out.println();
        Scanner scanner = new Scanner(System.in);
        
        String s1 = scanner.next();   
        String s2 = scanner.next();        

        if(isTrue(s1) && isTrue(s2)) System.out.println("8/33");
        else if(isTrue(s1)) System.out.println("8/32");
        else System.out.println("8/31");
        scanner.close();
    }
}
0