結果

問題 No.2847 Birthday Attack
ユーザー ShirotsumeShirotsume
提出日時 2024-08-23 22:11:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 63,832 KB
最終ジャッジ日時 2024-08-23 22:12:02
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,228 KB
testcase_01 AC 43 ms
56,856 KB
testcase_02 AC 43 ms
55,280 KB
testcase_03 AC 47 ms
61,144 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys, time, random
from collections import deque, Counter, defaultdict
def debug(*x):print('debug:',*x, file=sys.stderr)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1

x, y, mod = mi()
ans = 0
#縦
cnt = 0
for i in range(1, x + 1):
    if 2 * i > x:
        break
    cnt += (x - 2 * i)
ans += 2 * y * cnt
ans %= mod
#横
cnt = 0
for i in range(1, y + 1):
    if 2 * i > y:
        break
    cnt += (y - 2 * i)
ans += 2 * x * cnt
ans %= mod
print(ans)
0