結果
問題 | No.176 2種類の切手 |
ユーザー | norioc |
提出日時 | 2018-07-16 05:50:24 |
言語 | D (dmd 2.106.1) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 749 bytes |
コンパイル時間 | 278 ms |
コンパイル使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-11-14 20:32:39 |
合計ジャッジ時間 | 924 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
Main.d(1): Error: unable to read module `all` Main.d(1): Expected 'std/experimental/all.d' or 'std/experimental/all/package.d' in one of the following import paths: import path[0] = /opt/dmd/src/druntime/import/ import path[1] = /opt/dmd/src/phobos import path[2] = /home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd
ソースコード
import std.experimental.all; T read(T)() { return readln.chomp.to!T; } T[] reads(T)() { return readln.split.to!(T[]); } alias readint = read!int; alias readints = reads!int; int calc(int a, int b, int t) { // ax + by >= t int ans = int.max; for (int y = 0; ; y++) { // b 円の切手の枚数を固定する auto t2 = t - b * y; if (t2 <= 0) { // b 円の切手だけで t 円超えた ans = min(ans, b * y); break; } auto x = (t2 + a - 1) / a; ans = min(ans, a * x + b * y); if (y == a) break; } return ans; } void main() { auto abt = readints; int a = abt[0], b = abt[1], t = abt[2]; auto ans = calc(a, b, t); writeln(ans); }