結果

問題 No.2109 Special Week
ユーザー okapinokapin
提出日時 2023-03-17 21:14:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-09-18 10:09:28
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,944 KB
testcase_01 AC 32 ms
52,540 KB
testcase_02 AC 33 ms
52,000 KB
testcase_03 AC 32 ms
52,304 KB
testcase_04 AC 32 ms
52,644 KB
testcase_05 AC 31 ms
52,232 KB
testcase_06 AC 32 ms
52,824 KB
testcase_07 AC 32 ms
52,500 KB
testcase_08 AC 32 ms
52,804 KB
testcase_09 AC 32 ms
53,108 KB
testcase_10 AC 33 ms
52,188 KB
testcase_11 AC 33 ms
53,408 KB
testcase_12 AC 36 ms
54,140 KB
testcase_13 AC 32 ms
52,620 KB
testcase_14 AC 34 ms
52,192 KB
testcase_15 AC 37 ms
52,452 KB
testcase_16 AC 36 ms
52,540 KB
testcase_17 AC 33 ms
52,124 KB
testcase_18 AC 32 ms
53,828 KB
testcase_19 AC 32 ms
52,680 KB
testcase_20 AC 31 ms
52,344 KB
testcase_21 AC 32 ms
52,700 KB
testcase_22 AC 32 ms
52,660 KB
testcase_23 AC 32 ms
52,252 KB
testcase_24 AC 33 ms
52,744 KB
testcase_25 AC 33 ms
52,736 KB
testcase_26 AC 31 ms
52,960 KB
testcase_27 AC 32 ms
52,400 KB
testcase_28 AC 31 ms
52,692 KB
testcase_29 AC 33 ms
52,796 KB
testcase_30 AC 33 ms
54,080 KB
testcase_31 AC 32 ms
52,596 KB
testcase_32 AC 33 ms
52,440 KB
testcase_33 AC 31 ms
52,792 KB
testcase_34 AC 31 ms
52,424 KB
testcase_35 AC 34 ms
52,400 KB
testcase_36 AC 32 ms
53,224 KB
testcase_37 AC 32 ms
51,824 KB
testcase_38 AC 34 ms
51,996 KB
testcase_39 AC 34 ms
53,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m, d, k = map(int, input().split())
mon = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
res = set()
for _ in range(7):
    if d > mon[m-1]:
        d %= mon[m-1]
        m = (m+1) % 12
    mm = str(m).zfill(2)
    dd = str(d).zfill(2)
    #print(mm, dd)
    for i in mm+dd:
        res.add(i)
    d += 1
#print(res)
if len(res) >= k:
    print('Yes')
else:
    print('No')
0