結果
| 問題 | 
                            No.513 宝探し2
                             | 
                    
| コンテスト | |
| ユーザー | 
                             mastersatoshi
                         | 
                    
| 提出日時 | 2017-06-22 09:59:26 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                            (最新)
                                AC
                                 
                             
                            (最初)
                            
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 452 bytes | 
| コンパイル時間 | 144 ms | 
| コンパイル使用メモリ | 7,072 KB | 
| 実行使用メモリ | 40,416 KB | 
| 最終ジャッジ日時 | 2024-07-17 01:15:25 | 
| 合計ジャッジ時間 | 6,776 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | TLE * 1 -- * 11 | 
ソースコード
#import pdb; pdb.set_trace()
import sys
import math
def main():
    
    print "0 0"
    sys.stdout.flush()
    line = sys.stdin.read()
        
    print line + " 0"
    
    line2 = sys.stdin.read()
    
    if line2 == "":
        sys.exit()
    else:
        nline1 = int(line)
        nline2 = int(line2) / 2
        
        print str(nline1 - nline2) + " " + int(nline2)
        sys.stdout.flush()
        
if __name__ == '__main__':
    main()
            
            
            
        
            
mastersatoshi