結果
問題 | No.361 門松ゲーム2 |
ユーザー | chocorusk |
提出日時 | 2020-09-26 03:09:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 497 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,696 KB |
最終ジャッジ日時 | 2024-06-28 12:05:44 |
合計ジャッジ時間 | 7,576 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,696 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,496 KB |
testcase_05 | AC | 30 ms
10,496 KB |
testcase_06 | AC | 29 ms
10,880 KB |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | AC | 52 ms
10,752 KB |
testcase_09 | AC | 56 ms
10,624 KB |
testcase_10 | AC | 47 ms
10,624 KB |
testcase_11 | AC | 32 ms
10,496 KB |
testcase_12 | AC | 49 ms
10,496 KB |
testcase_13 | AC | 47 ms
10,624 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 322 ms
10,496 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
import sys read=sys.stdin.buffer.read readline=sys.stdin.buffer.readline readlines=sys.stdin.buffer.readlines l, d=map(int, readline().split()) g=[0]*(l+1) for x in range(1, l+1): st=set() for a in range(1, x): for b in range(1, a): c=x-a-b if 0<c and c<b and a-c<=d: st.add(g[a]^g[b]^g[c]) i=0 while True: if i not in st: g[x]=i break i+=1 if g[l]: print("kado") else: print("matsu")