結果

問題 No.1346 Rectangle
ユーザー chineristACchineristAC
提出日時 2021-01-16 14:46:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 81,452 KB
実行使用メモリ 53,216 KB
最終ジャッジ日時 2024-11-27 16:55:01
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,852 KB
testcase_01 AC 38 ms
52,184 KB
testcase_02 AC 35 ms
52,068 KB
testcase_03 AC 34 ms
52,612 KB
testcase_04 AC 35 ms
52,464 KB
testcase_05 AC 34 ms
51,944 KB
testcase_06 AC 34 ms
52,928 KB
testcase_07 AC 34 ms
51,748 KB
testcase_08 AC 34 ms
52,620 KB
testcase_09 AC 34 ms
51,816 KB
testcase_10 AC 38 ms
52,228 KB
testcase_11 AC 34 ms
51,168 KB
testcase_12 AC 35 ms
52,248 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 34 ms
51,996 KB
testcase_16 AC 35 ms
52,368 KB
testcase_17 AC 35 ms
51,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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