結果
| 問題 | No.841 8/32 | 
| コンテスト | |
| ユーザー |  HAGI_TARO | 
| 提出日時 | 2021-09-08 11:11:57 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 40 ms / 2,000 ms | 
| コード長 | 160 bytes | 
| コンパイル時間 | 349 ms | 
| コンパイル使用メモリ | 82,464 KB | 
| 実行使用メモリ | 52,352 KB | 
| 最終ジャッジ日時 | 2024-12-25 14:53:44 | 
| 合計ジャッジ時間 | 2,110 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 21 | 
ソースコード
s1,s2 = map(str,input().split())
ans = 31
if s1 == "Sun" or s1 == "Sat":
    ans += 1
    if s2 == "Sun" or s2 == "Sat":
        ans += 1
print("8/" + str(ans))
            
            
            
        