結果
問題 |
No.48 ロボットの操縦
|
ユーザー |
![]() |
提出日時 | 2018-10-23 20:09:26 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 928 ms |
コンパイル使用メモリ | 109,316 KB |
実行使用メモリ | 25,940 KB |
最終ジャッジ日時 | 2024-11-19 04:38:09 |
合計ジャッジ時間 | 2,247 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 WA * 1 |
コンパイルメッセージ
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) { if (x == 0 && y >= 0) return 0; var ans = (Abs(x) + a - 1) / a + (Abs(y) + a - 1) / a; if (y < 0) ans += 2; else ans++; return ans; } }