結果

問題 No.5000 特殊ジャッジテスト(テスト用)
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-20 02:51:07
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 129 bytes
コンパイル時間 636 ms
実行使用メモリ 956 KB
スコア 3,484
最終ジャッジ日時 2018-03-12 00:01:51
ジャッジサーバーID
(参考情報)
judge7 /
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

int main(void){
	long long int N;
	scanf("%lld", &N);
	
	printf("%lld %lld\n",(N-(N-2)), (N-2));
	return 0;
}
0