結果
問題 | No.33 アメーバがたくさん |
ユーザー | szkhts |
提出日時 | 2021-07-14 09:30:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 315 bytes |
コンパイル時間 | 99 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 20,384 KB |
最終ジャッジ日時 | 2024-07-03 08:23:44 |
合計ジャッジ時間 | 7,046 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
N, D, T = map(int, input().split()) ameba = {} x = list(map(int, input().split())) for i in x: ameba[i] = 1 for i in range(T): ameba_x = ameba.copy() for k, v in ameba_x.items(): k1 = k - D k2 = k + D ameba[k1] = 1 ameba[k2] = 1 print(sorted(ameba)) print(len(ameba))