結果

問題 No.8080 A0xxxxx
ユーザー kotatsugamekotatsugame
提出日時 2021-04-01 21:34:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 111 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 62,844 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-21 05:54:29
合計ジャッジ時間 1,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    3 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
main()
{
	int N;cin>>N;
	if(N==1)cout<<7<<endl;
	else cout<<9<<endl;
}
0