結果

問題 No.1974 2x2 Flipper
ユーザー NONODOKANONODOKA
提出日時 2022-06-10 23:29:32
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 1,825 bytes
コンパイル時間 17,356 ms
コンパイル使用メモリ 169,452 KB
実行使用メモリ 188,832 KB
最終ジャッジ日時 2024-09-21 06:58:29
合計ジャッジ時間 16,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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;
using System.Collections.Generic;
using System.Linq;

class Program
{
    internal static void Main() => new Program().Solve();

    void Solve()
    {
        //code
        var h = IO.Read<int>();
        var w = IO.Read<int>();
        int ans;

        if (h % 2 == 0)
        {
            if (w % 2 == 0)
            {
                ans = h * w;
                IO.Write(ans);
            }
            else
            {
                ans = h * (w - 1);
                IO.Write(ans);
            }
        }
        else
        {
            if (w % 2 == 0)
            {
                ans = (h - 1) * w;
                IO.Write(ans);
            }
            else
            {
                ans = (h - 1) * (w - 1) + 2;
                IO.Write(ans);
            }
        }

        #region A
        //int n = IO.Read<int>();
        //var linklist = new LinkedList<int>();
        //for (int i = 1; i <= n; i++)
        //{
        //    linklist.AddLast(i);
        //}
        //for (int i = 0; i < n; i++)
        //{
        //    IO.WriteEnum<int>(linklist);
        //    LinkedListNode<int> node = linklist.First;
        //    linklist.RemoveFirst();
        //    linklist.AddLast(node);
        //}
        #endregion
    }

}

static class IO
{
    static readonly Queue<string> que = new Queue<string>();
    public static T Read<T>() { if (!que.Any()) foreach (var s in Console.ReadLine().Split()) que.Enqueue(s); return (T)Convert.ChangeType(que.Dequeue(), typeof(T)); }
    public static IEnumerable<T> ReadEnum<T>(long n) { for (long i = 0; i < n; i++) yield return Read<T>(); }
    public static void Write<T>(T item) => Console.WriteLine(item);
    public static void WriteEnum<T>(IEnumerable<T> items, string separetor = " ") => Write(string.Join(separetor, items));
}
0