結果

問題 No.1903 Day1
ユーザー googol_S0googol_S0
提出日時 2022-04-15 21:21:13
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 104 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 87,036 KB
実行使用メモリ 75,908 KB
最終ジャッジ日時 2023-08-26 07:22:58
合計ジャッジ時間 2,092 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,248 KB
testcase_01 AC 70 ms
71,004 KB
testcase_02 AC 75 ms
75,692 KB
testcase_03 AC 71 ms
71,500 KB
testcase_04 AC 71 ms
71,200 KB
testcase_05 AC 71 ms
71,044 KB
testcase_06 AC 70 ms
71,108 KB
testcase_07 AC 71 ms
71,344 KB
testcase_08 AC 74 ms
75,888 KB
testcase_09 AC 76 ms
75,708 KB
testcase_10 AC 73 ms
75,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(1,10**7+1):
  if i%7==0:
    N+=6
  N-=1
  if N==0:
    print(i)
    break
0