結果
| 問題 |
No.841 8/32
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-02-19 15:35:19 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 38 ms / 2,000 ms |
| コード長 | 130 bytes |
| コンパイル時間 | 226 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2024-09-16 04:43:28 |
| 合計ジャッジ時間 | 2,027 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
s,t = input().split()
U = {"Sun","Sat"}
ans = "8/31"
if s in U:
ans = "8/32"
if s in U and t in U:
ans = "8/33"
print(ans)
convexineq