結果

問題 No.508 超ゆとり教育
ユーザー bayashiko_rbayashiko_r
提出日時 2018-11-12 23:41:45
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 212 bytes
コンパイル時間 3,222 ms
コンパイル使用メモリ 100,076 KB
実行使用メモリ 22,724 KB
最終ジャッジ日時 2023-08-25 23:38:31
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 55 ms
20,820 KB
testcase_02 AC 54 ms
22,724 KB
testcase_03 AC 54 ms
20,868 KB
testcase_04 AC 55 ms
22,696 KB
testcase_05 AC 54 ms
20,776 KB
testcase_06 AC 54 ms
20,652 KB
testcase_07 AC 54 ms
20,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program {
    static void Main(string[] args) {
        //入力
        int n = int.Parse(Console.ReadLine());

        //出力
        Console.WriteLine((int)Math.Sqrt(n / 3) + 1);
    }
}
0