結果

問題 No.1903 Day1
ユーザー 👑 rin204rin204
提出日時 2022-04-15 21:20:54
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 73 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 87,148 KB
実行使用メモリ 71,464 KB
最終ジャッジ日時 2023-08-26 07:22:43
合計ジャッジ時間 1,849 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,376 KB
testcase_01 AC 62 ms
71,276 KB
testcase_02 AC 61 ms
71,276 KB
testcase_03 AC 64 ms
71,328 KB
testcase_04 AC 63 ms
71,464 KB
testcase_05 AC 64 ms
71,276 KB
testcase_06 AC 64 ms
71,228 KB
testcase_07 AC 66 ms
71,216 KB
testcase_08 AC 63 ms
71,416 KB
testcase_09 AC 62 ms
71,416 KB
testcase_10 AC 64 ms
71,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n <= 6:
    print(n)
else:
    print(7 * (n - 6) + 6)
0