結果

問題 No.276 連続する整数の和(1)
ユーザー suzu
提出日時 2023-05-24 13:58:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 106,620 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-12-23 16:37:12
合計ジャッジ時間 1,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;

namespace yukicoder
{
	class pg
	{
		static void Main(string[] args)
		{
			int N = int.Parse(Console.ReadLine());
			
			if(N % 2 == 1)
			{
				Console.WriteLine(N);
			}else
			{
				Console.WriteLine(N / 2);
			}
		}
	}
}	
0