結果
問題 | No.1003 サイコロの実装 (1) |
ユーザー |
![]() |
提出日時 | 2020-03-06 21:24:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 157 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 60,352 KB |
最終ジャッジ日時 | 2024-10-14 03:58:22 |
合計ジャッジ時間 | 2,386 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 WA * 12 |
ソースコード
n = int(input()) l = [0]*n for i in range(n): j = (i%6)+1 j -= 1 l[j] += 1 #print(l) if min(l) == max(l): print('Yes') else: print('No')