結果

問題 No.1903 Day1
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-04-30 16:52:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 107 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 58,884 KB
最終ジャッジ日時 2024-06-29 22:01:49
合計ジャッジ時間 1,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,876 KB
testcase_01 AC 37 ms
53,040 KB
testcase_02 AC 39 ms
57,956 KB
testcase_03 AC 36 ms
52,880 KB
testcase_04 AC 36 ms
53,268 KB
testcase_05 AC 36 ms
51,936 KB
testcase_06 AC 37 ms
52,360 KB
testcase_07 AC 37 ms
52,024 KB
testcase_08 AC 40 ms
57,872 KB
testcase_09 AC 39 ms
58,884 KB
testcase_10 AC 41 ms
58,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

day = 0

while N:
    day += 1
    if day % 7 == 0:
        N += 6
    N -= 1
print(day)
0