結果

問題 No.1986 Yummy
ユーザー 👑 ygussanyygussany
提出日時 2022-06-24 21:21:53
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 27,648 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 17:04:15
合計ジャッジ時間 1,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 1 WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int N;
	scanf("%d", &N);
	if (N % 2 == 0) printf("1\n");
	else printf("%d\n", N / 2);
	fflush(stdout);
	return 0;
}
0