結果
| 問題 |
No.46 はじめのn歩
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-17 21:09:54 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 5,000 ms |
| コード長 | 494 bytes |
| コンパイル時間 | 901 ms |
| コンパイル使用メモリ | 107,008 KB |
| 実行使用メモリ | 20,224 KB |
| 最終ジャッジ日時 | 2024-12-15 22:56:38 |
| 合計ジャッジ時間 | 1,616 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.IO;
using System.Linq;
namespace yukicore
{
internal class Program
{
private static void Main(string[] args)
{
var nums = Console.ReadLine()
.Split(' ')
.Select(x => int.Parse(x)).ToArray();
var ans = 1.0 * nums[1] / nums[0];
if (ans % 1 == 0)
Console.WriteLine(ans);
else
Console.WriteLine(Math.Floor(ans) + 1);
}
}
}