結果

問題 No.2109 Special Week
ユーザー timitimi
提出日時 2022-10-28 21:31:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 55,836 KB
最終ジャッジ日時 2024-07-06 00:33:44
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,556 KB
testcase_01 AC 36 ms
54,944 KB
testcase_02 AC 40 ms
54,496 KB
testcase_03 AC 39 ms
54,508 KB
testcase_04 AC 38 ms
54,532 KB
testcase_05 WA -
testcase_06 AC 40 ms
54,876 KB
testcase_07 AC 37 ms
54,444 KB
testcase_08 AC 37 ms
54,276 KB
testcase_09 AC 35 ms
54,568 KB
testcase_10 AC 36 ms
53,676 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 33 ms
54,140 KB
testcase_14 AC 33 ms
54,384 KB
testcase_15 AC 35 ms
54,408 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 33 ms
54,404 KB
testcase_19 WA -
testcase_20 AC 34 ms
54,208 KB
testcase_21 AC 33 ms
54,504 KB
testcase_22 AC 35 ms
54,188 KB
testcase_23 AC 35 ms
54,200 KB
testcase_24 AC 36 ms
54,644 KB
testcase_25 WA -
testcase_26 AC 34 ms
54,212 KB
testcase_27 WA -
testcase_28 AC 34 ms
54,400 KB
testcase_29 AC 34 ms
54,136 KB
testcase_30 AC 34 ms
55,060 KB
testcase_31 AC 34 ms
54,880 KB
testcase_32 AC 33 ms
54,680 KB
testcase_33 AC 35 ms
54,104 KB
testcase_34 AC 34 ms
54,404 KB
testcase_35 AC 36 ms
54,532 KB
testcase_36 WA -
testcase_37 AC 34 ms
54,600 KB
testcase_38 AC 34 ms
54,360 KB
testcase_39 AC 34 ms
55,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A=[]
import datetime
now=datetime.datetime(2022,M,D)
for i in range(K):
  for j in range(5,7):
     A.append(str(now)[j])
  for j in range(8,10):
     A.append(str(now)[j])
  now+=datetime.timedelta(days=1)
if len(set(A))>=K:
  print('Yes')
else:
  print('No')
0