結果

問題 No.2109 Special Week
ユーザー n_nan_na
提出日時 2022-10-29 03:18:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 55,832 KB
最終ジャッジ日時 2024-07-06 05:24:37
合計ジャッジ時間 2,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,216 KB
testcase_01 AC 38 ms
55,360 KB
testcase_02 AC 36 ms
54,152 KB
testcase_03 AC 35 ms
54,308 KB
testcase_04 AC 35 ms
55,832 KB
testcase_05 AC 35 ms
54,436 KB
testcase_06 AC 37 ms
54,888 KB
testcase_07 AC 36 ms
54,632 KB
testcase_08 AC 37 ms
54,100 KB
testcase_09 AC 37 ms
54,364 KB
testcase_10 AC 36 ms
53,948 KB
testcase_11 AC 35 ms
54,064 KB
testcase_12 AC 37 ms
54,716 KB
testcase_13 AC 36 ms
54,460 KB
testcase_14 AC 36 ms
54,136 KB
testcase_15 AC 36 ms
55,816 KB
testcase_16 AC 36 ms
54,588 KB
testcase_17 AC 35 ms
54,864 KB
testcase_18 AC 35 ms
54,568 KB
testcase_19 AC 36 ms
54,628 KB
testcase_20 AC 38 ms
54,300 KB
testcase_21 AC 37 ms
53,976 KB
testcase_22 AC 36 ms
53,928 KB
testcase_23 AC 36 ms
55,364 KB
testcase_24 AC 35 ms
55,396 KB
testcase_25 AC 35 ms
54,108 KB
testcase_26 AC 35 ms
55,548 KB
testcase_27 AC 37 ms
54,372 KB
testcase_28 AC 40 ms
55,156 KB
testcase_29 AC 40 ms
53,540 KB
testcase_30 AC 37 ms
55,264 KB
testcase_31 AC 37 ms
54,936 KB
testcase_32 AC 35 ms
54,932 KB
testcase_33 AC 39 ms
54,924 KB
testcase_34 AC 36 ms
54,576 KB
testcase_35 AC 36 ms
53,928 KB
testcase_36 AC 34 ms
55,196 KB
testcase_37 AC 36 ms
54,168 KB
testcase_38 AC 35 ms
53,880 KB
testcase_39 AC 36 ms
55,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime

M,D,K = map(int,input().split())

se = set()
A = datetime.date(2022,M,D)
for i in range(7):
    B = A + datetime.timedelta(i)
    C = B.strftime("%m%d")
    for j in range(len(C)):
        se.add(C[j])
        
if len(se) >= K: print("Yes")
else: print("No")
0