結果

問題 No.57 ミリオンダイス
ユーザー うわばみうわばみ
提出日時 2020-04-29 20:05:56
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 209 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 65,368 KB
実行使用メモリ 24,804 KB
最終ジャッジ日時 2023-08-19 21:06:32
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
24,776 KB
testcase_01 AC 63 ms
24,804 KB
testcase_02 AC 62 ms
22,716 KB
testcase_03 AC 62 ms
22,628 KB
testcase_04 AC 63 ms
22,712 KB
testcase_05 AC 63 ms
24,736 KB
testcase_06 AC 62 ms
24,756 KB
testcase_07 AC 61 ms
24,660 KB
testcase_08 AC 61 ms
22,680 KB
testcase_09 AC 62 ms
22,720 KB
testcase_10 AC 62 ms
22,708 KB
testcase_11 AC 63 ms
22,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        Console.WriteLine($"{int.Parse(Console.ReadLine()) * 3.5f}");
    }
}
0