結果

問題 No.1903 Day1
ユーザー minarucominaruco
提出日時 2022-05-05 21:12:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 118 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 58,312 KB
最終ジャッジ日時 2024-07-04 22:53:05
合計ジャッジ時間 1,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,492 KB
testcase_01 AC 36 ms
52,768 KB
testcase_02 AC 40 ms
57,824 KB
testcase_03 AC 36 ms
51,824 KB
testcase_04 AC 37 ms
52,400 KB
testcase_05 AC 36 ms
52,556 KB
testcase_06 AC 36 ms
53,260 KB
testcase_07 AC 35 ms
52,484 KB
testcase_08 AC 39 ms
58,072 KB
testcase_09 AC 41 ms
58,312 KB
testcase_10 AC 39 ms
58,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans=1
n=int(input())
while 1:
    n-=1
    if n==0:
        break
    ans+=1
    if ans%7==0:
        n+=6
print(ans)
0