結果
問題 | No.1550 nullくんの町清掃 / null's Town Cleaning |
ユーザー | donuthole |
提出日時 | 2021-06-18 22:51:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 939 bytes |
コンパイル時間 | 296 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 69,120 KB |
最終ジャッジ日時 | 2024-06-22 21:11:37 |
合計ジャッジ時間 | 1,662 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
68,608 KB |
testcase_01 | AC | 75 ms
68,736 KB |
testcase_02 | AC | 72 ms
68,992 KB |
testcase_03 | AC | 76 ms
68,736 KB |
testcase_04 | AC | 73 ms
68,736 KB |
testcase_05 | AC | 77 ms
69,120 KB |
testcase_06 | AC | 73 ms
68,864 KB |
testcase_07 | AC | 71 ms
68,992 KB |
testcase_08 | AC | 72 ms
68,864 KB |
ソースコード
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()