結果

問題 No.46 はじめのn歩
ユーザー kiridaruma
提出日時 2016-03-07 21:12:34
言語 D
(dmd 2.109.1)
結果
RE  
実行時間 -
コード長 185 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 94,340 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-12 03:12:32
合計ジャッジ時間 1,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.string, std.conv;

void main(){
    auto a = readln.chomp.to!int;
    auto b = readln.chomp.to!int;
    int res = b/a;
    if(b%a != 0){res++;}
    res.writeln;
}
0