結果

問題 No.841 8/32
ユーザー GodNegotoGodNegoto
提出日時 2019-11-07 17:13:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 3,264 ms
コンパイル使用メモリ 77,020 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-09-15 00:42:22
合計ジャッジ時間 7,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,212 KB
testcase_01 AC 119 ms
41,156 KB
testcase_02 AC 121 ms
41,204 KB
testcase_03 AC 121 ms
41,284 KB
testcase_04 AC 122 ms
41,044 KB
testcase_05 AC 119 ms
41,108 KB
testcase_06 AC 121 ms
41,168 KB
testcase_07 AC 112 ms
40,352 KB
testcase_08 AC 118 ms
40,872 KB
testcase_09 AC 120 ms
41,396 KB
testcase_10 AC 123 ms
40,908 KB
testcase_11 AC 124 ms
40,968 KB
testcase_12 AC 124 ms
41,152 KB
testcase_13 AC 122 ms
41,048 KB
testcase_14 AC 111 ms
40,268 KB
testcase_15 AC 127 ms
40,840 KB
testcase_16 AC 126 ms
41,076 KB
testcase_17 AC 122 ms
40,896 KB
testcase_18 AC 120 ms
41,300 KB
testcase_19 AC 124 ms
40,984 KB
testcase_20 AC 120 ms
40,876 KB
testcase_21 AC 123 ms
41,400 KB
testcase_22 AC 121 ms
41,356 KB
testcase_23 AC 119 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

//import algo.*;

public class sample7 {

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