結果

問題 No.1893 Cycle
ユーザー bluemeganebluemegane
提出日時 2022-04-08 22:37:56
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 5,924 ms
コンパイル使用メモリ 106,760 KB
実行使用メモリ 26,136 KB
最終ジャッジ日時 2024-11-28 13:22:41
合計ジャッジ時間 6,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
26,016 KB
testcase_01 AC 22 ms
23,900 KB
testcase_02 AC 22 ms
24,156 KB
testcase_03 AC 23 ms
23,968 KB
testcase_04 AC 22 ms
23,952 KB
testcase_05 AC 22 ms
25,812 KB
testcase_06 AC 21 ms
24,028 KB
testcase_07 AC 21 ms
26,128 KB
testcase_08 AC 21 ms
23,964 KB
testcase_09 AC 22 ms
23,832 KB
testcase_10 AC 22 ms
23,768 KB
testcase_11 AC 22 ms
24,024 KB
testcase_12 AC 21 ms
25,880 KB
testcase_13 AC 22 ms
26,008 KB
testcase_14 AC 22 ms
21,936 KB
testcase_15 AC 21 ms
21,812 KB
testcase_16 AC 21 ms
24,080 KB
testcase_17 AC 22 ms
24,032 KB
testcase_18 AC 22 ms
23,768 KB
testcase_19 AC 21 ms
23,836 KB
testcase_20 AC 22 ms
24,108 KB
testcase_21 AC 23 ms
23,900 KB
testcase_22 AC 24 ms
26,136 KB
testcase_23 AC 22 ms
22,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var x = int.Parse(line[0]);
        var y = int.Parse(line[1]);
        getAns(x, y);
    }
    static void getAns(int x, int y)
    {
        if (x > y) { getAns(y, x); return; }
        var k = (x + 4) % 12;
        Console.WriteLine(k != y ? k : (y + 4) % 12);
    }
}
0