結果
| 問題 | No.272 NOT回路 |
| コンテスト | |
| ユーザー |
merumeru_333333
|
| 提出日時 | 2020-05-31 00:43:31 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 15 ms / 1,000 ms |
| + 308µs | |
| コード長 | 268 bytes |
| 記録 | |
| コンパイル時間 | 447 ms |
| コンパイル使用メモリ | 109,556 KB |
| 実行使用メモリ | 25,912 KB |
| 最終ジャッジ日時 | 2026-09-21 23:36:51 |
| 合計ジャッジ時間 | 1,636 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 11 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
class test
{
public static void Main(string[] args)
{
var X = Console.ReadLine();
if (X == "1")
{
Console.WriteLine("0");
}
else
{
Console.WriteLine("1");
}
}
}
merumeru_333333