結果

問題 No.581 XOR
ユーザー phspls
提出日時 2020-03-28 15:49:42
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 218 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 114,148 KB
実行使用メモリ 27,760 KB
最終ジャッジ日時 2025-01-02 11:38:11
合計ジャッジ時間 1,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4 RE * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

public class P0581 {
    public static void Main() {
        var ac = Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToList();
        Console.WriteLine(ac[0] ^ ac[1]);
    }
}
0