結果

問題 No.27 板の準備
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-14 22:49:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-06-07 23:21:25
合計ジャッジ時間 3,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
6,144 KB
testcase_01 AC 106 ms
6,272 KB
testcase_02 AC 107 ms
6,272 KB
testcase_03 AC 106 ms
6,144 KB
testcase_04 AC 106 ms
6,272 KB
testcase_05 AC 105 ms
6,272 KB
testcase_06 AC 106 ms
6,272 KB
testcase_07 AC 106 ms
6,144 KB
testcase_08 AC 107 ms
6,144 KB
testcase_09 AC 106 ms
6,144 KB
testcase_10 AC 105 ms
6,016 KB
testcase_11 AC 106 ms
6,144 KB
testcase_12 AC 105 ms
6,272 KB
testcase_13 AC 103 ms
6,272 KB
testcase_14 AC 107 ms
6,144 KB
testcase_15 AC 104 ms
6,272 KB
testcase_16 AC 106 ms
6,272 KB
testcase_17 AC 105 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V=map(int,raw_input().split())

ans = 150
for i in range(1,31):
   for j in range(i+1,31):
      for k in range(j+1,31):
         cnt = [500 for l in range(100)]
         cnt[0]=0
         for l in range(31):
            if cnt[l] != 500 :
               cnt[l+i] = min(cnt[l+i],cnt[l]+1)
               cnt[l+j] = min(cnt[l+j],cnt[l]+1)
               cnt[l+k] = min(cnt[l+k],cnt[l]+1)
         curCnt = 0
         for v in V:
            curCnt += cnt[v]
         ans = min(ans,curCnt)
print ans
0