結果
| 問題 |
No.98 円を描こう
|
| コンテスト | |
| ユーザー |
ooh_20
|
| 提出日時 | 2018-01-22 13:56:04 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 5,000 ms |
| コード長 | 483 bytes |
| コンパイル時間 | 2,444 ms |
| コンパイル使用メモリ | 103,808 KB |
| 実行使用メモリ | 17,920 KB |
| 最終ジャッジ日時 | 2024-12-25 23:02:07 |
| 合計ジャッジ時間 | 3,446 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 6 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
namespace ConsoleApp30
{
class Program
{
static void Main(string[] args)
{
string[] row = Console.ReadLine().Split();
int Xp = int.Parse(row[0]);
int Yp = int.Parse(row[1]);
double tmp = Math.Sqrt(Xp * Xp + Yp * Yp) * 2;
int L = (int)Math.Ceiling(tmp);
if (tmp == L)
{
L++;
}
Console.WriteLine(L);
}
}
}
ooh_20