結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
ixTL255
|
| 提出日時 | 2016-09-08 01:10:18 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 5,000 ms |
| コード長 | 373 bytes |
| コンパイル時間 | 758 ms |
| コンパイル使用メモリ | 106,204 KB |
| 実行使用メモリ | 18,048 KB |
| 最終ジャッジ日時 | 2024-11-21 18:50:42 |
| 合計ジャッジ時間 | 2,194 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
public class Test
{
public static void Main()
{
var x = int.Parse(Console.ReadLine());
var y = int.Parse(Console.ReadLine());
var l = int.Parse(Console.ReadLine());
int ans;
if(y < 0) ans = 2;
else if(x != 0) ans = 1;
else ans = 0;
ans += (Math.Abs(x) + l - 1) / l
+ (Math.Abs(y) + l - 1) / l;
Console.WriteLine(ans);
}
}
ixTL255