import java.util.*;
import java.util.zip.*;
import java.util.List;
import java.util.regex.*;
import java.util.concurrent.*;
import java.util.concurrent.atomic.*;
import java.util.concurrent.locks.*;
import java.util.function.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
import javax.swing.table.*;
import java.io.*;
import java.net.*;
import java.lang.reflect.*;
import java.lang.ref.*;
import java.lang.management.*;
import java.security.*;
import java.security.spec.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.awt.geom.*;
import javax.imageio.*;
import java.math.*;
import java.time.Duration;
import static x30_pkg.x30_util.DynamicObject;
import java.text.*;
import java.text.NumberFormat;
import java.util.TimeZone;
import java.awt.geom.*;
class main {
static class CheckLSFRTriplet implements IFieldsToList{
int bits;
int[] triplet;
CheckLSFRTriplet() {}
CheckLSFRTriplet(int bits, int[] triplet) {
this.triplet = triplet;
this.bits = bits;}
public String toString() { return shortClassName_dropNumberPrefix(this) + "(" + bits + ", " + triplet + ")"; }public Object[] _fieldsToList() { return new Object[] {bits, triplet}; }
final public CheckLSFRTriplet setVerbose(boolean verbose){ return verbose(verbose); }
public CheckLSFRTriplet verbose(boolean verbose) { this.verbose = verbose; return this; } final public boolean getVerbose(){ return verbose(); }
public boolean verbose() { return verbose; }
boolean verbose = false;
TripletLSFR lsfr;
int steps;
boolean get() {
lsfr = new TripletLSFR(bits, triplet[0], triplet[1], triplet[2]);
int cycleLength = (1 << bits)-1;
assertEquals(cycleLength, lsfr.cycleLength());
BitSet bs = new BitSet();
for (steps = 0; steps < cycleLength; steps++) {
int i = lsfr.next();
if (verbose) print("i", i);
if (i < 1 || i > cycleLength) return false;
if (bs.get(i))
return false;
bs.set(i);
}
return true;
}
}
static String shortClassName_dropNumberPrefix(Object o) {
return dropNumberPrefix(shortClassName(o));
}
static A assertEquals(Object x, A y) {
return assertEquals("", x, y);
}
static A assertEquals(String msg, Object x, A y) {
if (assertVerbose()) return assertEqualsVerbose(msg, x, y);
if (!(x == null ? y == null : x.equals(y)))
throw fail((msg != null ? msg + ": " : "") + y + " != " + x);
return y;
}
static volatile StringBuffer local_log = new StringBuffer(); // not redirected
static boolean printAlsoToSystemOut = true;
static volatile Appendable print_log = local_log; // might be redirected, e.g. to main bot
// in bytes - will cut to half that
static volatile int print_log_max = 1024*1024;
static volatile int local_log_max = 100*1024;
static boolean print_silent = false; // total mute if set
static Object print_byThread_lock = new Object();
static volatile ThreadLocal