結果
| 問題 |
No.355 数当てゲーム(2)
|
| コンテスト | |
| ユーザー |
matsu7874
|
| 提出日時 | 2016-04-01 22:29:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 318 bytes |
| コンパイル時間 | 299 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 27,728 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2024-07-16 08:51:49 |
| 合計ジャッジ時間 | 12,961 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 52 |
ソースコード
import sys
import itertools
ans = []
for i in range(10):
print(i,i,i,i)
sys.stdout.flush()
x,y =map(int, input().split())
for j in range(x+y):
ans.append(i)
for a in itertools.permutations(ans):
print(a)
sys.stdout.flush()
x,y=map(int, input().split())
if x==4:
exit()
matsu7874