結果

問題 No.1345 Beautiful BINGO
ユーザー convexineq
提出日時 2021-01-16 14:12:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 145 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-11-27 15:20:59
合計ジャッジ時間 6,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n <= 2: ans = "INF"
elif n==3: ans = 6
elif n==4: ans = 5
elif n==5: ans = 4
elif n==6: ans = 3
elif n==7: ans = 2
print(ans)
0