結果

問題 No.1346 Rectangle
ユーザー hir355hir355
提出日時 2021-01-16 13:55:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-11-27 14:41:56
合計ジャッジ時間 1,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1 or n == 2:
    print('INF')
elif n == 3:
    print(7)
elif n == 4:
    print(5)
elif n == 5:
    print(4)
elif n == 6:
    print(3)
else:
    print(2)
0