結果
| 問題 | No.8064 う し た ぷ に き あ く ん 笑 |
| コンテスト | |
| ユーザー |
Fuyuru
|
| 提出日時 | 2020-06-15 15:57:20 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 449 bytes |
| 記録 | |
| コンパイル時間 | 621 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,840 KB |
| 最終ジャッジ日時 | 2026-03-24 19:35:29 |
| 合計ジャッジ時間 | 7,201 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 47 |
ソースコード
import sys import math import itertools import bisect from copy import copy from collections import deque,Counter from decimal import Decimal def s(): return input() def i(): return int(input()) def S(): return input().split() def I(): return map(int,input().split()) def L(): return list(input().split()) def l(): return list(map(int,input().split())) def lcm(a,b): return a*b//math.gcd(a,b) sys.setrecursionlimit(10 ** 9) mod = 10**9+7 print(s())
Fuyuru