結果

問題 No.1550 nullくんの町清掃 / null's Town Cleaning
ユーザー donutholedonuthole
提出日時 2021-06-18 22:51:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 86,916 KB
実行使用メモリ 83,160 KB
最終ジャッジ日時 2023-09-04 23:58:14
合計ジャッジ時間 2,897 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
83,084 KB
testcase_01 AC 181 ms
83,160 KB
testcase_02 AC 180 ms
83,132 KB
testcase_03 AC 180 ms
83,096 KB
testcase_04 AC 180 ms
83,048 KB
testcase_05 AC 180 ms
82,932 KB
testcase_06 AC 180 ms
83,084 KB
testcase_07 AC 179 ms
83,016 KB
testcase_08 AC 181 ms
83,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys
import math
import collections
import bisect
import itertools
import heapq
import copy

# ===TEMPLATE==
# sys.setrecursionlimit(10**7+1)
# inf = float('inf')
inf = 10**20
mod = 10 ** 9 + 7
# mod = 998244353


def ni(): return int(sys.stdin.buffer.readline())
def ns(): return map(int, sys.stdin.buffer.readline().split())
def na(): return list(map(int, sys.stdin.buffer.readline().split()))
def na1(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split()))
def nall(): return list(map(int, sys.stdin.buffer.read().split()))
def flush(): return sys.stdout.flush()
def nic(): return int(sys.stdin.readline())
def nsc(): return map(int, sys.stdin.readline().split())
def nac(): return list(map(int, sys.stdin.readline().split()))
def na1c(): return list(map(lambda x: int(x)-1, sys.stdin.readline().split()))


# ===CODE===
def main():
    print(ni() % mod)


if __name__ == '__main__':
    main()
0