結果

問題 No.361 門松ゲーム2
ユーザー 0w10w1
提出日時 2017-04-27 17:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 73,472 KB
最終ジャッジ日時 2024-09-13 14:50:58
合計ジャッジ時間 3,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,616 KB
testcase_01 AC 38 ms
52,340 KB
testcase_02 AC 38 ms
52,808 KB
testcase_03 AC 38 ms
53,616 KB
testcase_04 AC 38 ms
52,696 KB
testcase_05 AC 38 ms
52,088 KB
testcase_06 AC 42 ms
52,424 KB
testcase_07 AC 38 ms
52,124 KB
testcase_08 AC 51 ms
63,952 KB
testcase_09 AC 51 ms
63,144 KB
testcase_10 AC 51 ms
63,208 KB
testcase_11 AC 45 ms
59,660 KB
testcase_12 AC 50 ms
63,628 KB
testcase_13 AC 50 ms
62,992 KB
testcase_14 AC 109 ms
71,936 KB
testcase_15 AC 58 ms
64,384 KB
testcase_16 AC 120 ms
72,192 KB
testcase_17 AC 106 ms
72,448 KB
testcase_18 AC 61 ms
64,768 KB
testcase_19 AC 104 ms
71,936 KB
testcase_20 AC 56 ms
63,744 KB
testcase_21 AC 115 ms
71,424 KB
testcase_22 AC 157 ms
73,472 KB
testcase_23 AC 104 ms
71,168 KB
testcase_24 AC 105 ms
71,680 KB
testcase_25 AC 114 ms
72,320 KB
testcase_26 AC 121 ms
73,088 KB
testcase_27 AC 123 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, D = map( int, input().split() )

sg = [ 0 for i in range( L + 1 ) ]
for i in range( L + 1 ):
  bag = set()
  for j in range( 1, i ):
    for k in range( j + 1, i - j ):
      l = i - j - k
      if not ( j < k < l ): continue
      if not ( l - j <= D ): continue
      bag.add( sg[ j ] ^ sg[ k ] ^ sg[ l ] )
  for j in range( 1000000 ):
    if j not in bag:
      sg[ i ] = j
      break

print( [ "matsu", "kado" ][ sg[ L ] > 0 ] )
0