結果

問題 No.841 8/32
ユーザー 37zigen37zigen
提出日時 2020-01-23 05:10:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-07-18 08:03:23
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,396 KB
testcase_01 AC 110 ms
40,880 KB
testcase_02 AC 109 ms
41,012 KB
testcase_03 AC 107 ms
41,128 KB
testcase_04 AC 97 ms
40,248 KB
testcase_05 AC 101 ms
40,500 KB
testcase_06 AC 100 ms
40,124 KB
testcase_07 AC 98 ms
40,344 KB
testcase_08 AC 106 ms
41,024 KB
testcase_09 AC 105 ms
41,036 KB
testcase_10 AC 110 ms
40,980 KB
testcase_11 AC 109 ms
41,140 KB
testcase_12 AC 115 ms
41,360 KB
testcase_13 AC 103 ms
40,088 KB
testcase_14 AC 124 ms
41,228 KB
testcase_15 AC 120 ms
41,312 KB
testcase_16 AC 122 ms
41,108 KB
testcase_17 AC 115 ms
41,284 KB
testcase_18 AC 98 ms
39,988 KB
testcase_19 AC 108 ms
41,068 KB
testcase_20 AC 114 ms
41,104 KB
testcase_21 AC 116 ms
41,112 KB
testcase_22 AC 112 ms
41,280 KB
testcase_23 AC 111 ms
40,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
	public static void main(String[] args){
		new Main().run();
	}
	
	boolean f(String s){
		return s.equals("Sat")||s.equals("Sun");
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		String a=sc.next();
		String b=sc.next();
		String ans="";
		if(f(a)&&!f(b))ans="8/32";
		else if(f(a)&&f(b))ans="8/33";
		else ans="8/31";
		System.out.println(ans);
	}
}
0