結果

問題 No.841 8/32
ユーザー pypypymipypypymi
提出日時 2022-01-21 11:22:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 53,052 KB
最終ジャッジ日時 2024-11-25 05:29:35
合計ジャッジ時間 1,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,872 KB
testcase_01 AC 35 ms
52,876 KB
testcase_02 AC 36 ms
51,612 KB
testcase_03 AC 34 ms
51,544 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 35 ms
52,696 KB
testcase_06 AC 33 ms
52,624 KB
testcase_07 AC 34 ms
52,776 KB
testcase_08 AC 35 ms
52,752 KB
testcase_09 AC 36 ms
52,344 KB
testcase_10 AC 35 ms
52,196 KB
testcase_11 AC 37 ms
53,052 KB
testcase_12 AC 39 ms
51,652 KB
testcase_13 AC 35 ms
52,084 KB
testcase_14 AC 36 ms
52,108 KB
testcase_15 AC 36 ms
52,080 KB
testcase_16 AC 35 ms
52,692 KB
testcase_17 AC 34 ms
52,448 KB
testcase_18 AC 35 ms
52,884 KB
testcase_19 AC 35 ms
52,392 KB
testcase_20 AC 35 ms
51,984 KB
testcase_21 AC 35 ms
52,196 KB
testcase_22 AC 34 ms
52,440 KB
testcase_23 AC 34 ms
52,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 9/1と9/2の曜日が与えられます。
# 9/1だけが土曜日(Sat)か日曜日(Sun)であるならば"8/32"、9/1と9/2が両方土曜日か日曜日であるならば"8/33"と出力してください。
# それ以外の場合は"8/31"と出力してください。

s1,s2 = input().split()
if (s1=="Sat" or s1=="Sun") and (s2!="Sat" and s2!="Sun"):
    print("8/32")
elif (s1=="Sat" or s1=="Sun") and (s2=="Sat" or s2=="Sun"):
    print("8/33")
else:
    print("8/31")
0