結果

問題 No.2109 Special Week
ユーザー prussian_coderprussian_coder
提出日時 2022-10-28 21:26:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 55,744 KB
最終ジャッジ日時 2024-07-06 00:24:12
合計ジャッジ時間 2,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,424 KB
testcase_01 AC 40 ms
53,744 KB
testcase_02 AC 39 ms
54,792 KB
testcase_03 AC 39 ms
53,884 KB
testcase_04 AC 39 ms
53,468 KB
testcase_05 AC 39 ms
54,380 KB
testcase_06 AC 40 ms
54,712 KB
testcase_07 AC 40 ms
53,884 KB
testcase_08 AC 40 ms
54,136 KB
testcase_09 AC 40 ms
54,448 KB
testcase_10 AC 40 ms
54,480 KB
testcase_11 AC 39 ms
55,440 KB
testcase_12 AC 39 ms
54,068 KB
testcase_13 AC 39 ms
54,596 KB
testcase_14 AC 39 ms
54,168 KB
testcase_15 AC 40 ms
53,924 KB
testcase_16 AC 40 ms
54,092 KB
testcase_17 AC 40 ms
53,800 KB
testcase_18 AC 40 ms
54,984 KB
testcase_19 AC 40 ms
54,376 KB
testcase_20 AC 39 ms
54,752 KB
testcase_21 AC 40 ms
54,576 KB
testcase_22 AC 39 ms
54,348 KB
testcase_23 AC 39 ms
54,396 KB
testcase_24 AC 40 ms
54,748 KB
testcase_25 AC 40 ms
54,240 KB
testcase_26 AC 38 ms
54,752 KB
testcase_27 AC 39 ms
53,884 KB
testcase_28 AC 41 ms
55,116 KB
testcase_29 AC 40 ms
53,952 KB
testcase_30 AC 40 ms
54,644 KB
testcase_31 AC 39 ms
53,480 KB
testcase_32 AC 39 ms
54,436 KB
testcase_33 AC 40 ms
54,760 KB
testcase_34 AC 39 ms
55,744 KB
testcase_35 AC 40 ms
55,564 KB
testcase_36 AC 39 ms
54,140 KB
testcase_37 AC 39 ms
53,940 KB
testcase_38 AC 41 ms
54,924 KB
testcase_39 AC 39 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,D,K=map(int,input().split())
import datetime
a=datetime.datetime(year=2022,month=M,day=D)
T=set()
for i in range(7):
	for s in str(a.month).zfill(2):
		T.add(s)
	for s in str(a.day).zfill(2):
		T.add(s)
	a=a+datetime.timedelta(days=1)
if len(T)>=K:
	print("Yes")
else:
	print("No")
0