結果

問題 No.1461 しあはせや歩みゆく?
ユーザー roarisroaris
提出日時 2021-04-02 21:29:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 71,964 KB
最終ジャッジ日時 2023-08-25 11:28:48
合計ジャッジ時間 5,166 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
71,552 KB
testcase_01 AC 90 ms
71,648 KB
testcase_02 AC 89 ms
71,680 KB
testcase_03 AC 89 ms
71,964 KB
testcase_04 AC 88 ms
71,696 KB
testcase_05 AC 87 ms
71,532 KB
testcase_06 AC 89 ms
71,548 KB
testcase_07 AC 89 ms
71,524 KB
testcase_08 AC 87 ms
71,832 KB
testcase_09 AC 91 ms
71,572 KB
testcase_10 AC 86 ms
71,656 KB
testcase_11 AC 88 ms
71,788 KB
testcase_12 AC 86 ms
71,876 KB
testcase_13 AC 87 ms
71,588 KB
testcase_14 AC 89 ms
71,588 KB
testcase_15 AC 89 ms
71,904 KB
testcase_16 AC 88 ms
71,616 KB
testcase_17 AC 90 ms
71,440 KB
testcase_18 AC 88 ms
71,572 KB
testcase_19 AC 89 ms
71,620 KB
testcase_20 AC 89 ms
71,416 KB
testcase_21 AC 90 ms
71,612 KB
testcase_22 AC 88 ms
71,440 KB
testcase_23 AC 88 ms
71,700 KB
testcase_24 AC 88 ms
71,608 KB
testcase_25 AC 87 ms
71,884 KB
testcase_26 AC 84 ms
71,608 KB
testcase_27 AC 87 ms
71,856 KB
testcase_28 AC 86 ms
71,800 KB
testcase_29 AC 86 ms
71,440 KB
testcase_30 AC 87 ms
71,672 KB
testcase_31 AC 87 ms
71,504 KB
testcase_32 AC 87 ms
71,524 KB
testcase_33 AC 86 ms
71,552 KB
testcase_34 AC 85 ms
71,680 KB
testcase_35 AC 93 ms
71,648 KB
testcase_36 AC 90 ms
71,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())

if N<=3:
    print(N)
else:
    print(3+5*(N-3))
0