結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | da_ab |
提出日時 | 2021-03-27 07:13:58 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,136 bytes |
コンパイル時間 | 378 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 88,160 KB |
最終ジャッジ日時 | 2024-11-29 08:05:01 |
合計ジャッジ時間 | 34,923 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 531 ms
49,256 KB |
testcase_01 | AC | 538 ms
88,160 KB |
testcase_02 | AC | 544 ms
49,644 KB |
testcase_03 | AC | 539 ms
87,808 KB |
testcase_04 | AC | 550 ms
49,388 KB |
testcase_05 | AC | 538 ms
88,092 KB |
testcase_06 | AC | 533 ms
51,084 KB |
testcase_07 | AC | 779 ms
44,392 KB |
testcase_08 | AC | 847 ms
49,644 KB |
testcase_09 | AC | 584 ms
87,380 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
ソースコード
# 1439 : Let's Compare!!!! import numpy as np from sys import stdin N=int(stdin.readline()) if N<100: blockSize=N else: blockSize=100 S=0 T=1 paddingSize=(blockSize-N%blockSize)%blockSize padding="0"*paddingSize N+=paddingSize strS=padding+stdin.readline().rstrip() strT=padding+stdin.readline().rstrip() strST=[0]*2 strST[S]=[0]*int(np.floor(N/blockSize)) strST[T]=[0]*int(np.floor(N/blockSize)) k=0 for i in range(int(np.floor(N/blockSize))): strST[S][i]=strS[k:k+blockSize] strST[T][i]=strT[k:k+blockSize] k+=blockSize Q=int(stdin.readline()) for _ in range(Q): c,x,y=stdin.readline().split() x=(int(x)-1)+paddingSize if c=='S': tStr=S else: tStr=T nThBlock=int(np.floor(x/blockSize)) nThChar=x%blockSize strST[tStr][nThBlock]=strST[tStr][nThBlock][0:nThChar]+y+strST[tStr][nThBlock][nThChar+1:] result='=' for i in range(int(np.floor(N/blockSize))): intS=int(strST[S][i]) intT=int(strST[T][i]) if strST[S]>strST[T]: result='>' break elif strST[S]<strST[T]: result='<' print(result)