結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-09 00:59:40 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 5,000 ms |
| コード長 | 636 bytes |
| コンパイル時間 | 2,362 ms |
| コンパイル使用メモリ | 102,688 KB |
| 実行使用メモリ | 18,048 KB |
| 最終ジャッジ日時 | 2024-11-21 18:35:40 |
| 合計ジャッジ時間 | 3,909 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
namespace TestConsole
{
class Program
{
static void Main(string[] args)
{
var X = int.Parse(Console.ReadLine());
var Y = int.Parse(Console.ReadLine());
var L = int.Parse(Console.ReadLine());
int count = X != 0 ? (Math.Abs(X) - 1) / L + 2 : 0;
count += Y != 0 ? (Math.Abs(Y) - 1) / L + 1 : 0;
if (Y < 0)
{
count++;
if(X == 0)
{
count++;
}
}
Console.WriteLine(count);
}
}
}