結果
問題 | No.666 1000000007で割るだけ |
ユーザー |
![]() |
提出日時 | 2018-03-23 22:35:02 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 1,024 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-24 21:49:42 |
合計ジャッジ時間 | 1,677 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#!/usr/bin/env python# -*- coding: utf-8 -*-import sysfrom collections import dequeimport heapqfrom collections import Counterimport math# ------------------------------------------------------class IN:@staticmethoddef singleInt():return int(input())@staticmethoddef singleStr():return input()@staticmethoddef listInt():return list(map(int, input().split()))@staticmethoddef listStr():return input().split()# ------------------------------------------------------print = lambda s: sys.stdout.write(str(s) + "\r\n")def contain(c, x):return (x in c)def str_reverse(s):return s[::-1]def ctoi(c):return int.from_bytes(c.encode(), byteorder='big')def itoc(x):return x.to_bytes((x.bit_length() + 7) // 8, byteorder='big').decode()INF = 1001001001001001001# ------------------------------------------------------MOD = 1000000007if __name__ == '__main__':A, B = IN.listInt()print(A * B % MOD)