結果
問題 | No.1346 Rectangle |
ユーザー |
|
提出日時 | 2021-01-16 14:21:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 258 bytes |
コンパイル時間 | 1,523 ms |
コンパイル使用メモリ | 164,244 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 02:51:18 |
合計ジャッジ時間 | 2,215 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 17 |
ソースコード
#include<bits/stdc++.h>#define int long longusing namespace std;signed main(){int N;cin>>N;if(N==2)puts("INF");else if(N==3)puts("6");else if(N==4)puts("6");else if(N==5)puts("4");else if(N==6)puts("4");else puts("2");}