結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
_agatan
|
| 提出日時 | 2015-04-24 19:20:52 |
| 言語 | D (dmd 2.112.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 157 bytes |
| 記録 | |
| コンパイル時間 | 1,367 ms |
| コンパイル使用メモリ | 114,540 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-05 06:27:58 |
| 合計ジャッジ時間 | 1,616 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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