結果
問題 |
No.355 数当てゲーム(2)
|
ユーザー |
|
提出日時 | 2016-06-05 19:33:53 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 342 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,600 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2024-07-16 10:17:03 |
合計ジャッジ時間 | 12,932 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 52 |
ソースコード
#!/usr/bin/env python3 import sys a = [0] * 4 for i in range(len(a)): best_hit = -1 correct_digit = None for j in range(10): a[i] = j print(*a) sys.stdout.flush() x, _ = map(int,input().split()) if best_hit < x: best_hit = x correct_digit = j a[i] = j print(*a)