結果
| 問題 | No.8060 サンプルケース至上主義 |
| コンテスト | |
| ユーザー |
efunyo
|
| 提出日時 | 2020-04-01 22:14:27 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 2,000 ms |
| コード長 | 807 bytes |
| 記録 | |
| コンパイル時間 | 298 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 54,400 KB |
| 最終ジャッジ日時 | 2026-03-15 04:48:31 |
| 合計ジャッジ時間 | 845 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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