結果

問題 No.51 やる気の問題
ユーザー AdamantiteAdamantite
提出日時 2023-06-28 00:41:42
言語 C#
(.NET 8.0.203)
結果
RE  
実行時間 -
コード長 367 bytes
コンパイル時間 12,158 ms
コンパイル使用メモリ 168,268 KB
実行使用メモリ 190,412 KB
最終ジャッジ日時 2024-07-04 16:47:35
合計ジャッジ時間 13,045 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
28,544 KB
testcase_01 AC 52 ms
28,800 KB
testcase_02 AC 51 ms
28,544 KB
testcase_03 AC 51 ms
28,928 KB
testcase_04 AC 49 ms
28,544 KB
testcase_05 RE -
testcase_06 AC 60 ms
29,696 KB
testcase_07 AC 58 ms
29,816 KB
testcase_08 AC 61 ms
29,676 KB
testcase_09 RE -
testcase_10 AC 61 ms
29,824 KB
testcase_11 AC 63 ms
29,792 KB
testcase_12 AC 64 ms
29,792 KB
testcase_13 AC 61 ms
29,688 KB
testcase_14 AC 64 ms
29,824 KB
testcase_15 RE -
testcase_16 AC 62 ms
29,696 KB
testcase_17 AC 51 ms
28,800 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 62 ms
29,952 KB
testcase_21 AC 50 ms
28,416 KB
testcase_22 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (148 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

namespace No51_MotivationIssues
{
    internal class Program
    {
        static void Main(string[] args) {
            int w = int.Parse(Console.ReadLine());
            int d = int.Parse(Console.ReadLine());
            for(int i = d; 1 < i; i--) {
                w -= w / (i * i);
            }
            Console.WriteLine(w);
        }
    }
}
0