結果

問題 No.279 木の数え上げ
ユーザー BE: SEVENTHBE: SEVENTH
提出日時 2024-06-13 15:56:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,740 KB
最終ジャッジ日時 2024-06-13 15:56:59
合計ジャッジ時間 6,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 477 ms
22,124 KB
testcase_11 AC 121 ms
13,172 KB
testcase_12 AC 340 ms
18,620 KB
testcase_13 AC 83 ms
12,160 KB
testcase_14 AC 491 ms
23,080 KB
testcase_15 AC 400 ms
20,872 KB
testcase_16 AC 368 ms
20,728 KB
testcase_17 AC 455 ms
23,200 KB
testcase_18 AC 248 ms
16,992 KB
testcase_19 AC 440 ms
22,832 KB
testcase_20 AC 480 ms
23,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  
  tree_list = []
  tree_count = 0
  moziretsu_dict = {}
  moziretsu = list(map(str, input()))
  moziretsu.sort()
  for i in moziretsu:
    if i in moziretsu_dict.keys():
      moziretsu_dict[i] += 1
    else:
      moziretsu_dict[i] = 1
  for key, value in moziretsu_dict.items():
    if key == "t" or key == "r" or key == "e":
      tree_list.append(value)
    else:
      continue
  while tree_list[0] >= 2 and tree_list[1] >= 1 and tree_list[2] >= 1:
    for i, number in enumerate(tree_list):
      if len(tree_list) == 3:
            if i == 0:
              number -= 2
              tree_list[i] = number
              tree_count += 1
            else:
              number -= 1
              tree_list[i] = number
      else:
        continue
  print(tree_count)

if __name__ == '__main__':
  main()
0