結果

問題 No.1346 Rectangle
ユーザー chineristACchineristAC
提出日時 2021-01-16 14:48:11
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 912 ms
コンパイル使用メモリ 86,996 KB
実行使用メモリ 71,492 KB
最終ジャッジ日時 2023-07-25 08:14:58
合計ジャッジ時間 3,240 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,224 KB
testcase_01 AC 76 ms
71,196 KB
testcase_02 AC 77 ms
71,376 KB
testcase_03 AC 76 ms
71,196 KB
testcase_04 AC 78 ms
71,388 KB
testcase_05 AC 76 ms
71,492 KB
testcase_06 AC 76 ms
71,384 KB
testcase_07 AC 78 ms
71,468 KB
testcase_08 AC 77 ms
71,412 KB
testcase_09 AC 77 ms
71,236 KB
testcase_10 AC 77 ms
71,380 KB
testcase_11 AC 76 ms
71,276 KB
testcase_12 AC 77 ms
71,312 KB
testcase_13 AC 77 ms
71,268 KB
testcase_14 AC 77 ms
71,280 KB
testcase_15 AC 75 ms
71,160 KB
testcase_16 AC 78 ms
71,272 KB
testcase_17 AC 75 ms
71,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

if N==2:
    print("INF")
elif N==3:
    print(6)
elif N==4:
    print(6)
elif N==5:
    print(4)
elif N==6:
    print(4)
else:
    print(2)
0