結果

問題 No.841 8/32
ユーザー tentententen
提出日時 2020-08-31 23:11:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 73,672 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-11-17 02:46:38
合計ジャッジ時間 5,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,252 KB
testcase_01 AC 113 ms
40,944 KB
testcase_02 AC 115 ms
41,052 KB
testcase_03 AC 112 ms
40,588 KB
testcase_04 AC 117 ms
40,984 KB
testcase_05 AC 120 ms
40,540 KB
testcase_06 AC 116 ms
40,716 KB
testcase_07 AC 112 ms
40,860 KB
testcase_08 AC 114 ms
41,028 KB
testcase_09 AC 104 ms
40,084 KB
testcase_10 AC 117 ms
41,144 KB
testcase_11 AC 112 ms
40,672 KB
testcase_12 AC 100 ms
40,136 KB
testcase_13 AC 115 ms
40,836 KB
testcase_14 AC 117 ms
41,144 KB
testcase_15 AC 108 ms
40,104 KB
testcase_16 AC 113 ms
40,924 KB
testcase_17 AC 114 ms
40,772 KB
testcase_18 AC 115 ms
40,944 KB
testcase_19 AC 100 ms
39,920 KB
testcase_20 AC 112 ms
40,556 KB
testcase_21 AC 116 ms
41,024 KB
testcase_22 AC 112 ms
40,860 KB
testcase_23 AC 103 ms
39,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	String s1 = sc.next();
    	String s2 = sc.next();
    	boolean result1 = (s1.equals("Sat") || s1.equals("Sun"));
    	boolean result2 = (s2.equals("Sat") || s2.equals("Sun"));
    	if (result1 && result2) {
    	    System.out.println("8/33");
    	} else if (result1) {
    	    System.out.println("8/32");
    	} else {
    	    System.out.println("8/31");
    	}
	}
}
0