結果

問題 No.361 門松ゲーム2
ユーザー PNJPNJ
提出日時 2024-02-25 12:04:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 71,660 KB
最終ジャッジ日時 2024-09-29 10:52:56
合計ジャッジ時間 3,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,944 KB
testcase_01 AC 37 ms
52,544 KB
testcase_02 AC 37 ms
52,400 KB
testcase_03 AC 38 ms
52,524 KB
testcase_04 AC 36 ms
52,744 KB
testcase_05 AC 37 ms
52,396 KB
testcase_06 AC 38 ms
54,028 KB
testcase_07 AC 39 ms
52,472 KB
testcase_08 AC 51 ms
63,224 KB
testcase_09 AC 53 ms
63,448 KB
testcase_10 AC 51 ms
63,772 KB
testcase_11 AC 43 ms
60,096 KB
testcase_12 AC 52 ms
63,284 KB
testcase_13 AC 52 ms
63,408 KB
testcase_14 AC 92 ms
69,988 KB
testcase_15 AC 62 ms
67,420 KB
testcase_16 AC 105 ms
71,188 KB
testcase_17 AC 104 ms
71,156 KB
testcase_18 AC 62 ms
66,696 KB
testcase_19 AC 111 ms
70,884 KB
testcase_20 AC 60 ms
67,528 KB
testcase_21 AC 101 ms
71,128 KB
testcase_22 AC 119 ms
71,660 KB
testcase_23 AC 73 ms
68,552 KB
testcase_24 AC 74 ms
68,664 KB
testcase_25 AC 115 ms
70,720 KB
testcase_26 AC 116 ms
71,208 KB
testcase_27 AC 116 ms
71,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,D = map(int,input().split())
G = [-1 for i in range(L+1)]
for x in range(min(L,5) + 1):
  G[x] = 0

for x in range(6,L+1):
  X = set()
  for i in range(1,L):
    for j in range(i+1,L):
      k = x - i - j
      if j >= k:
        break
      if k - i > D:
        continue
      g = G[i] ^ G[j] ^ G[k]
      X.add(g)
  g = 0
  while g in X:
    g += 1
  G[x] = g

ans = 'kado'
if G[L] == 0:
  ans = 'matsu'
print(ans)
0