結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
_agatan
|
| 提出日時 | 2015-04-24 19:20:52 |
| 言語 | D (dmd 2.112.0) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 5,000 ms |
| + 897µs | |
| コード長 | 157 bytes |
| 記録 | |
| コンパイル時間 | 697 ms |
| コンパイル使用メモリ | 112,000 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-25 21:48:03 |
| 合計ジャッジ時間 | 1,606 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/core/checkedint.d(814): Warning: cannot inline function `core.checkedint.mulu!().mulu`
ulong mulu()(ulong x, uint y, ref bool overflow)
^
ソースコード
import std.stdio, std.algorithm, std.array, std.conv, std.string;
void main()
{
ulong a, b;
readf("%d %d", &a, &b);
writeln((b + a - 1) / a);
}
_agatan