結果
| 問題 |
No.8060 サンプルケース至上主義
|
| コンテスト | |
| ユーザー |
efunyo
|
| 提出日時 | 2020-04-01 22:14:27 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 46 ms / 2,000 ms |
| コード長 | 807 bytes |
| コンパイル時間 | 319 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 54,528 KB |
| 最終ジャッジ日時 | 2024-06-27 11:10:34 |
| 合計ジャッジ時間 | 843 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
ソースコード
#AC出てから!ファイル整理!
#Twitterしない!耳栓!
#42
#YNU
import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**7)
from collections import Counter, deque
#from collections import defaultdict
from itertools import combinations, permutations, accumulate, groupby
#from itertools import product
from bisect import bisect_left,bisect_right
from heapq import heapify, heappop, heappush
from math import floor, ceil
#from operator import itemgetter
#inf = 10**17
mod = 10**9 + 7
s = input().rstrip()
if s=='0':
print('Nothing')
elif s=='3.14159265':
print('pi')
elif s=='くぁwせdrftgyふじこlp':
print('さmpぇ')
elif s=='All your base are belong to us.':
print('3\n4\n4\n3\n6\n2\n2')
else:
print('九蓮宝燈\nThirteen Orphans')
efunyo