結果

問題 No.1903 Day1
ユーザー deepjugglingdeepjuggling
提出日時 2023-01-16 12:48:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 134 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 59,928 KB
最終ジャッジ日時 2024-06-09 19:31:27
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,684 KB
testcase_01 AC 34 ms
53,088 KB
testcase_02 AC 36 ms
59,928 KB
testcase_03 AC 33 ms
53,620 KB
testcase_04 AC 33 ms
52,620 KB
testcase_05 AC 34 ms
52,620 KB
testcase_06 AC 32 ms
52,876 KB
testcase_07 AC 33 ms
52,772 KB
testcase_08 AC 34 ms
58,000 KB
testcase_09 AC 34 ms
58,860 KB
testcase_10 AC 35 ms
58,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(1,100000):
    if i % 7 == 0:
        n += 6
    n -= 1
    if n == 0:
        print(i)
        exit()
0