fork download
  1. import java.util.*;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. try {
  8.  
  9. List<String> imageBlocks = new ArrayList<>(Arrays.asList(
  10. "Face_top",
  11. "Face_bottom",
  12. "Background_L",
  13. "Background_R"
  14. ));
  15.  
  16. System.out.println("Original image layout: " + imageBlocks);
  17.  
  18. Collections.shuffle(imageBlocks, new Random(12345));
  19.  
  20. System.out.println("Obfuscated image layout: " + imageBlocks);
  21.  
  22. long workloadMI = 8000;
  23.  
  24. System.out.println("\n=== OBFUSCATED REPORT ===");
  25.  
  26. System.out.println("STATUS: SUCCESS");
  27.  
  28. double processingDelay = workloadMI / 2000.0;
  29.  
  30. System.out.println("Processing delay: " +
  31. processingDelay + " seconds");
  32.  
  33. } catch (Exception e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. }
Success #stdin #stdout 0.13s 55748KB
stdin
Standard input is empty
stdout
Original image layout: [Face_top, Face_bottom, Background_L, Background_R]
Obfuscated image layout: [Face_top, Background_L, Background_R, Face_bottom]

=== OBFUSCATED REPORT ===
STATUS: SUCCESS
Processing delay: 4.0 seconds