結果
| 問題 |
No.434 占い
|
| コンテスト | |
| ユーザー |
kmjp
|
| 提出日時 | 2016-10-14 22:45:58 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 248 bytes |
| コンパイル時間 | 1,498 ms |
| コンパイル使用メモリ | 76,800 KB |
| 実行使用メモリ | 88,960 KB |
| 最終ジャッジ日時 | 2024-11-22 08:02:54 |
| 合計ジャッジ時間 | 98,846 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 4 |
| other | TLE * 27 |
ソースコード
import sys
import math
N=100000
R=0
p=1
for i in range(N):
p *= N-i;
p /= i+1;
if i%10000==0:
print i
print 1010
sys.exit()
N=input()
S=raw_input()
N,K=map(int,raw_input().strip().split(" "))
A=[[0 for i in range(505)] for j in range(505)]
kmjp