結果

問題 No.2109 Special Week
ユーザー bayashikobayashiko
提出日時 2022-10-11 22:16:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 1,292 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 55,236 KB
最終ジャッジ日時 2024-06-25 17:11:57
合計ジャッジ時間 3,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,576 KB
testcase_01 AC 40 ms
55,236 KB
testcase_02 AC 41 ms
53,712 KB
testcase_03 AC 40 ms
54,616 KB
testcase_04 AC 41 ms
53,700 KB
testcase_05 AC 41 ms
54,416 KB
testcase_06 AC 40 ms
53,464 KB
testcase_07 AC 41 ms
54,780 KB
testcase_08 AC 41 ms
54,184 KB
testcase_09 AC 42 ms
54,252 KB
testcase_10 AC 41 ms
53,548 KB
testcase_11 AC 40 ms
54,448 KB
testcase_12 AC 40 ms
54,676 KB
testcase_13 AC 41 ms
53,732 KB
testcase_14 AC 41 ms
53,820 KB
testcase_15 AC 42 ms
54,364 KB
testcase_16 AC 41 ms
54,184 KB
testcase_17 AC 41 ms
54,384 KB
testcase_18 AC 41 ms
53,940 KB
testcase_19 AC 41 ms
53,916 KB
testcase_20 AC 40 ms
54,376 KB
testcase_21 AC 41 ms
54,388 KB
testcase_22 AC 41 ms
54,864 KB
testcase_23 AC 40 ms
53,796 KB
testcase_24 AC 41 ms
55,064 KB
testcase_25 AC 41 ms
53,952 KB
testcase_26 AC 41 ms
53,980 KB
testcase_27 AC 41 ms
54,608 KB
testcase_28 AC 41 ms
53,344 KB
testcase_29 AC 40 ms
54,616 KB
testcase_30 AC 40 ms
53,732 KB
testcase_31 AC 41 ms
54,360 KB
testcase_32 AC 41 ms
54,668 KB
testcase_33 AC 40 ms
54,588 KB
testcase_34 AC 41 ms
54,656 KB
testcase_35 AC 40 ms
54,016 KB
testcase_36 AC 40 ms
54,608 KB
testcase_37 AC 40 ms
54,308 KB
testcase_38 AC 40 ms
55,180 KB
testcase_39 AC 40 ms
53,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime

M,D,K=map(int,input().split())
lis = ['0','1','2','3','4','5','6','7','8','9']

dt=datetime.datetime(2022,M,D,0,0,0,0)
allday = ""
cnt = 0
for i in range(7):
    allday+=str(dt)[5:10]
    dt+=datetime.timedelta(days=1)
for i in range(10):
    if lis[i] in allday:
        cnt += 1
if cnt >= K:
    print("Yes")
else:
    print("No")
0