結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー kmtrc130kmtrc130
提出日時 2019-03-18 14:51:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 1,803 ms
コンパイル使用メモリ 97,260 KB
実行使用メモリ 22,548 KB
最終ジャッジ日時 2023-09-25 11:18:19
合計ジャッジ時間 3,964 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
20,580 KB
testcase_01 AC 50 ms
18,352 KB
testcase_02 AC 51 ms
18,464 KB
testcase_03 AC 50 ms
20,516 KB
testcase_04 AC 50 ms
20,448 KB
testcase_05 AC 50 ms
22,548 KB
testcase_06 AC 50 ms
22,436 KB
testcase_07 AC 51 ms
22,452 KB
testcase_08 AC 50 ms
20,592 KB
testcase_09 AC 50 ms
20,416 KB
testcase_10 AC 50 ms
20,460 KB
testcase_11 AC 51 ms
22,448 KB
testcase_12 AC 52 ms
20,376 KB
testcase_13 AC 50 ms
18,356 KB
testcase_14 AC 52 ms
20,392 KB
testcase_15 AC 50 ms
20,588 KB
testcase_16 AC 50 ms
20,424 KB
testcase_17 AC 50 ms
20,528 KB
testcase_18 AC 50 ms
20,400 KB
testcase_19 AC 51 ms
20,432 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
{
    public void Solve()
    {
        string N = Console.ReadLine();  // 100円玉
        string M = Console.ReadLine();  // 10円玉
        
        // M = 10 * N を満たす
        Console.WriteLine("Yes");
    }

    static void Main()
    {
        var solver = new Program();
        solver.Solve();
    }
}
0