結果
問題 | No.27 板の準備 |
ユーザー | iicafiaxus |
提出日時 | 2018-12-10 22:32:23 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 901 bytes |
コンパイル時間 | 744 ms |
コンパイル使用メモリ | 125,048 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-13 02:11:19 |
合計ジャッジ時間 | 1,425 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 5 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,940 KB |
ソースコード
import std.stdio, std.conv, std.string, std.bigint; import std.math, std.random, std.datetime; import std.array, std.range, std.algorithm, std.container, std.format; string read(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; } void main(){ int v1 = read.to!int; int v2 = read.to!int; int v3 = read.to!int; int v4 = read.to!int; int ans = 10000; foreach(a; 1 .. 29) foreach(b; a + 1 .. 30) foreach(c; b + 1 .. 31){ int tmp = solve(v1, a, b, c) + solve(v2, a, b, c) + solve(v3, a, b, c) + solve(v4, a, b, c); if(tmp < ans) ans = tmp; } ans.writeln; } int solve(int v, int a, int b, int c){ int res = 10000; foreach(i; 0 .. v + 1) foreach(j; 0 .. v + 1){ if(i * a + j * b > v) break; if((v - i * a - j * b) % c > 0) continue; int tmp = i + j + (v - i * a - j * b) / c; if(tmp < res) res = tmp; } return res; }