結果

問題 No.2109 Special Week
ユーザー syunsukesyunsuke
提出日時 2022-11-26 22:57:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 72,324 KB
最終ジャッジ日時 2024-10-03 05:44:43
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,312 KB
testcase_01 AC 68 ms
69,968 KB
testcase_02 AC 65 ms
71,788 KB
testcase_03 AC 64 ms
71,056 KB
testcase_04 AC 64 ms
70,376 KB
testcase_05 AC 66 ms
71,436 KB
testcase_06 AC 64 ms
70,252 KB
testcase_07 AC 65 ms
70,876 KB
testcase_08 AC 65 ms
70,268 KB
testcase_09 AC 66 ms
70,596 KB
testcase_10 AC 66 ms
70,164 KB
testcase_11 AC 65 ms
71,548 KB
testcase_12 AC 65 ms
72,324 KB
testcase_13 AC 64 ms
71,156 KB
testcase_14 AC 63 ms
70,564 KB
testcase_15 AC 64 ms
71,480 KB
testcase_16 AC 65 ms
70,648 KB
testcase_17 AC 66 ms
71,040 KB
testcase_18 AC 65 ms
71,668 KB
testcase_19 AC 64 ms
70,624 KB
testcase_20 AC 64 ms
70,672 KB
testcase_21 AC 65 ms
70,448 KB
testcase_22 AC 68 ms
71,800 KB
testcase_23 AC 70 ms
71,000 KB
testcase_24 AC 71 ms
71,760 KB
testcase_25 AC 70 ms
70,788 KB
testcase_26 AC 69 ms
71,444 KB
testcase_27 AC 69 ms
71,072 KB
testcase_28 AC 65 ms
70,084 KB
testcase_29 AC 65 ms
70,900 KB
testcase_30 AC 64 ms
70,544 KB
testcase_31 AC 63 ms
72,200 KB
testcase_32 AC 64 ms
71,416 KB
testcase_33 AC 64 ms
70,588 KB
testcase_34 AC 64 ms
70,568 KB
testcase_35 AC 65 ms
71,480 KB
testcase_36 AC 67 ms
71,392 KB
testcase_37 AC 65 ms
70,796 KB
testcase_38 AC 64 ms
70,600 KB
testcase_39 AC 63 ms
70,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime as dt
M,D,K = map(int,input().split())
today = dt.datetime.strptime(str(2022)+str(M)+str(D),"%Y%m%d")

S = set()
for i in range(7):
    A = str(today + dt.timedelta(days=i))
    A = A.split()
    A = A[0]
    A = A.split("-")
    for j in range(2):
        S.add(A[1][j])
        S.add(A[2][j])
if len(S) >= K:
    print("Yes")
else:
    print("No")
0