結果
| 問題 |
No.8080 A0xxxxx
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-01 21:14:28 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 111 bytes |
| コンパイル時間 | 660 ms |
| コンパイル使用メモリ | 61,776 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-21 05:13:00 |
| 合計ジャッジ時間 | 1,274 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 9 |
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
3 | main()
| ^~~~
ソースコード
#include<iostream>
using namespace std;
main()
{
int N;cin>>N;
if(N==1)cout<<7<<endl;
else cout<<3<<endl;
}