結果

問題 No.388 階段 (1)
ユーザー nanae
提出日時 2017-03-01 19:44:17
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 99,088 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 07:07:39
合計ジャッジ時間 1,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void main(){
    auto line = readln.split.map!(to!int).array;
    int S = line[0], F = line[1];

    int ans = S / F + 1;
    ans.writeln;
}
0