結果

問題 No.5000 特殊ジャッジテスト(テスト用)
ユーザー Mcpu3Mcpu3
提出日時 2018-04-30 22:28:42
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 729 ms
実行使用メモリ 956 KB
スコア 3,288
最終ジャッジ日時 2018-04-30 22:28:44
ジャッジサーバーID
(参考情報)
judge6 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
952 KB
testcase_01 AC 1 ms
952 KB
testcase_02 AC 0 ms
952 KB
testcase_03 AC 1 ms
956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	int n;
	scanf("%d", &n);
	n / 2 == 1 ? printf("%d %d", n / 2 - 1, n - (n / 2 - 1)) : printf("%d %d", n / 2, n - n / 2);
	return 0;
}
0