結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
bluemegane
|
| 提出日時 | 2018-10-23 20:12:25 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 5,000 ms |
| コード長 | 546 bytes |
| コンパイル時間 | 873 ms |
| コンパイル使用メモリ | 109,460 KB |
| 実行使用メモリ | 25,940 KB |
| 最終ジャッジ日時 | 2024-11-19 04:38:15 |
| 合計ジャッジ時間 | 2,311 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using static System.Math;
using System;
public class Hello
{
public static void Main()
{
var x = int.Parse(Console.ReadLine().Trim());
var y = int.Parse(Console.ReadLine().Trim());
var L = int.Parse(Console.ReadLine().Trim());
Console.WriteLine(getAns(x,y,L));
}
public static int getAns(int x, int y, int a)
{
var ans = (Abs(x) + a - 1) / a + (Abs(y) + a - 1) / a;
if (x == 0 && y >= 0) return ans;
if (y < 0) ans += 2;
else ans++;
return ans;
}
}
bluemegane